diff --git a/workflow/nextflow.config b/workflow/nextflow.config index 8ee8989e7571a671a4cd416aa92dd217f5e7f15b..8828d1ad62ec30d929643cda8e0aa5e89812c042 100644 --- a/workflow/nextflow.config +++ b/workflow/nextflow.config @@ -97,19 +97,19 @@ process { } trace { - enabled = true - file = "${params.outDir}/${params.repRID}_trace.txt" + enabled = false + file = 'trace.txt' fields = 'task_id,native_id,process,name,status,exit,submit,start,complete,duration,realtime,%cpu,%mem,rss' } timeline { - enabled = true - file = "${params.outDir}/${params.repRID}_timeline.html" + enabled = false + file = 'timeline.html' } report { - enabled = true - file = "${params.outDir}/${params.repRID}_report.html" + enabled = false + file = 'report.html' } tower { diff --git a/workflow/scripts/split_study.sh b/workflow/scripts/split_study.sh index 8ae2def6a27252f3c4761855782262efc81e73e4..aeec0fa1d1fc8e7fe41eaa2c332eae55fe2f0c3e 100644 --- a/workflow/scripts/split_study.sh +++ b/workflow/scripts/split_study.sh @@ -14,7 +14,7 @@ python3 ./workflow/scripts/split_study.py -s $1 # run pipeline on replicate RIDs in parallel module load nextflow/20.01.0 module load singularity/3.5.3 -while read repRID; do echo ${repRID}; sleep 30; done < "$1_studyRID.csv" | xargs -P 5 -I {} nextflow -q run workflow/rna-seq.nf --repRID {} --source production --deriva /project/BICF/BICF_Core/shared/gudmap/test_data/auth/credential.json --bdbag /project/BICF/BICF_Core/shared/gudmap/test_data/auth/cookies.txt --dev false --upload true --email gervaise.henry@utsouthwestern.edu +while read repRID; do echo ${repRID}; sleep 30; done < "$1_studyRID.csv" | xargs -P 5 -I {} nextflow -q run workflow/rna-seq.nf --repRID {} --source production --deriva /project/BICF/BICF_Core/shared/gudmap/test_data/auth/credential.json --bdbag /project/BICF/BICF_Core/shared/gudmap/test_data/auth/cookies.txt --dev false --upload true --email gervaise.henry@utsouthwestern.edu -with-report ./output/{}_report.html -with-timeline ./output/{}_timeline.html # cleanup study RID files rm $1_studyRID.json