Skip to content
Snippets Groups Projects
Commit 6839e190 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix refernece to cutoff value in nextflow process.

parent 96c119ec
No related merge requests found
......@@ -297,12 +297,12 @@ process poolAndPsuedoReads {
if (pairedEnd) {
"""
python3 $baseDir/scripts/pool_and_psuedoreplicate.py -d $experimentObjs -p -c cutoffRatio
python3 $baseDir/scripts/pool_and_psuedoreplicate.py -d $experimentObjs -c $cutoffRatio -p
"""
}
else {
"""
python3 $baseDir/scripts/pool_and_psuedoreplicate.py -d $experimentObjs -c cutoffRatio
python3 $baseDir/scripts/pool_and_psuedoreplicate.py -d $experimentObjs -c $cutoffRatio
"""
}
......
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