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
Branches
Tags
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)
**User Facing**
* Corrected spelling of inferred (#125)
* Add param for seqwho reference (#127)
**Background**
* Corrected file search parameters due to name inconsistency (#129)
......@@ -11,6 +12,7 @@
* Remove "fail" integration CI tests (#133 addendum)
* 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)
* Replace default seqwho reference location to one provided by source lab (#127)
# v2.0.0
**User Facing**
......
......@@ -23,6 +23,7 @@ params.source = "dev"
params.refMoVersion = "38.p6.vM25"
params.refHuVersion = "38.p13.v36"
params.refERCCVersion = "92"
params.seqwhoRef = "https://cloud.biohpc.swmed.edu/index.php/s/sP48taKmymSkJBM/download"
params.outDir = "${baseDir}/output"
params.upload = false
params.email = ""
......@@ -67,6 +68,7 @@ repRID = params.repRID
refMoVersion = params.refMoVersion
refHuVersion = params.refHuVersion
refERCCVersion = params.refERCCVersion
seqwhoRef = params.seqwhoRef
outDir = params.outDir
logsDir = "${outDir}/Logs"
upload = params.upload
......@@ -714,6 +716,7 @@ process seqwho {
tag "${repRID}"
input:
val seqwhoRef
path (fastq) from fastqs_seqwho
val ends from endsManual_seqwho
val speciesMeta from speciesMeta_seqwho
......@@ -734,7 +737,7 @@ process seqwho {
ulimit -a >> ${repRID}.seqwho.log
# 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
# 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