Skip to content

Instantly share code, notes, and snippets.

View smoe's full-sized avatar

Steffen Möller smoe

View GitHub Profile
@smoe
smoe / addit.sh
Created September 25, 2020 09:53
Adds a Debian package to a local apt repository, after running pbuilder, works from source tree, optionally gets sources from salsa
#!/bin/bash
distribution="unstable"
showhelp() {
cat <<EOHELP
Please add some help!
Usage: $(basename $0) <repository URL>
$(basename $0) # expecting a debian folder within same directory
@smoe
smoe / gridcoinresearchd.completion
Created February 28, 2019 23:13
Add BASH completion to gridcoinresearchd
#!/bin/bash
_gridcoindresearchd_completions()
{
WORDS+="help"
for helpitem in $(gridcoinresearchd help | grep -- --- |cut -f1 -d' ')
do
#echo "Help: $helpitem"
for w in $(gridcoinresearchd help $helpitem | cut -f1 -d' ')
do
@smoe
smoe / README.md
Last active February 28, 2017 08:52
Rank drugs in the ConnectivityMap / LINCS by selecting a preferred transcriptional effect

Rank drugs in the Connectivity Map or eventually also in LINCS by naming a set of target genes

The input to this little R function is a set of target genes and the log fold changes of the CMap.

Steffen Möller

@smoe
smoe / README.txt
Last active October 26, 2015 02:24
Use R to retrieve result data from Autodock Vina
AutoDock(Vina) result parseR
============================
The here presented functions help with interpreting the output of
AutoDock Vina. The same routines can also be used for a quick
encouter for PDBQT files of the receptor.
Installation and Setup
----------------------