Skip to content
Snippets Groups Projects
Commit 445f6693 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Change seqwho ref location

parent da9f1020
2 merge requests!95Update rna-seq.nf,!94Resolve "Move seqwho reference"
Pipeline #10528 passed with stages
in 3 minutes and 55 seconds
# v.2.0.1 (indev) # v.2.0.1 (indev)
**User Facing** **User Facing**
* Corrected spelling of inferred (#125) * Corrected spelling of inferred (#125)
* Add param for seqwho reference (#127)
**Background** **Background**
* Corrected file search parameters due to name inconsistency (#129) * Corrected file search parameters due to name inconsistency (#129)
...@@ -11,6 +12,7 @@ ...@@ -11,6 +12,7 @@
* Remove "fail" integration CI tests (#133 addendum) * Remove "fail" integration CI tests (#133 addendum)
* Add licence header to nf file, R and python scriptsand pytest scripts * Add licence header to nf file, R and python scriptsand pytest scripts
* Stop using RCB and RMB (default) with deriva.core insert calls to match server update (#134) * Stop using RCB and RMB (default) with deriva.core insert calls to match server update (#134)
* Replace default seqwho reference location to one provided by source lab (#127)
# v2.0.0 # v2.0.0
**User Facing** **User Facing**
......
...@@ -23,6 +23,7 @@ params.source = "dev" ...@@ -23,6 +23,7 @@ params.source = "dev"
params.refMoVersion = "38.p6.vM25" params.refMoVersion = "38.p6.vM25"
params.refHuVersion = "38.p13.v36" params.refHuVersion = "38.p13.v36"
params.refERCCVersion = "92" params.refERCCVersion = "92"
params.seqwhoRef = "https://cloud.biohpc.swmed.edu/index.php/s/sP48taKmymSkJBM/download"
params.outDir = "${baseDir}/output" params.outDir = "${baseDir}/output"
params.upload = false params.upload = false
params.email = "" params.email = ""
...@@ -67,6 +68,7 @@ repRID = params.repRID ...@@ -67,6 +68,7 @@ repRID = params.repRID
refMoVersion = params.refMoVersion refMoVersion = params.refMoVersion
refHuVersion = params.refHuVersion refHuVersion = params.refHuVersion
refERCCVersion = params.refERCCVersion refERCCVersion = params.refERCCVersion
seqwhoRef = params.seqwhoRef
outDir = params.outDir outDir = params.outDir
logsDir = "${outDir}/Logs" logsDir = "${outDir}/Logs"
upload = params.upload upload = params.upload
...@@ -714,6 +716,7 @@ process seqwho { ...@@ -714,6 +716,7 @@ process seqwho {
tag "${repRID}" tag "${repRID}"
input: input:
val seqwhoRef
path (fastq) from fastqs_seqwho path (fastq) from fastqs_seqwho
val ends from endsManual_seqwho val ends from endsManual_seqwho
val speciesMeta from speciesMeta_seqwho val speciesMeta from speciesMeta_seqwho
...@@ -734,7 +737,7 @@ process seqwho { ...@@ -734,7 +737,7 @@ process seqwho {
ulimit -a >> ${repRID}.seqwho.log ulimit -a >> ${repRID}.seqwho.log
# get seqwho index # get seqwho index
wget -O SeqWho.ix https://cloud.biohpc.swmed.edu/index.php/s/eeNWqZz8jqN5zWY/download wget -O SeqWho.ix ${seqwhoRef}
echo -e "LOG: seqwho index downloaded" >> ${repRID}.seqwho.log echo -e "LOG: seqwho index downloaded" >> ${repRID}.seqwho.log
# run seqwho # run seqwho
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment