Skip to content

Commit

Permalink
Merge pull request #106 from RoanKanninga/master
Browse files Browse the repository at this point in the history
added config files for automate.sh
  • Loading branch information
Gerbenvandervries committed Feb 15, 2016
2 parents 7b60297 + e0a6c75 commit 0b29bf4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
15 changes: 10 additions & 5 deletions automate_demultiplexing/automate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ module load ngs-utils
module load Python
module list

WORKDIR="/groups/umcg-gaf/scr01/"
LOGSDIR="${WORKDIR}/logs/"
NEXTSEQDIR="${WORKDIR}/sequencers/"
SAMPLESHEETDIR="${WORKDIR}/Samplesheets/"
ONTVANGER="[email protected]"
##source config file (zinc-finger.gcc.rug.nl.cfg OR gattaca.cfg)
myhost=$(hostname)
if [[ $myhost == *"gattaca"* ]]
then
. gattaca.cfg
else
. ${myhost}
fi



### Sequencer is writing to this location: $NEXTSEQDIR
### Looping through to see if all files
Expand Down
5 changes: 5 additions & 0 deletions automate_demultiplexing/gattaca.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
WORKDIR="/groups/umcg-gaf/scr01/"
LOGSDIR="${WORKDIR}/logs/"
NEXTSEQDIR="${WORKDIR}/sequencers/"
SAMPLESHEETDIR="${WORKDIR}/Samplesheets/"
ONTVANGER="[email protected]"
5 changes: 5 additions & 0 deletions automate_demultiplexing/zinc-finger.gcc.rug.nl.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
WORKDIR="/groups/umcg-gaf/tmp05/"
LOGSDIR="${WORKDIR}/logs/"
NEXTSEQDIR="${WORKDIR}/rawdata/nextseq"
SAMPLESHEETDIR="${WORKDIR}/Samplesheets/"
ONTVANGER="[email protected]"

0 comments on commit 0b29bf4

Please sign in to comment.