Skip to content
Snippets Groups Projects
Unverified Commit 5d9cab2d authored by Peter van 't Hof's avatar Peter van 't Hof Committed by GitHub
Browse files

Merge branch 'master' into splitNCigarReads

parents 817cb4ce 8155c98c
No related branches found
No related tags found
1 merge request!5add SplitNCigarReads
......@@ -6,8 +6,8 @@ task Star {
String genomeDir
String outFileNamePrefix
String? outSAMtype = "BAM SortedByCoordinate"
String? readFilesCommand = "zcat"
String? outSAMtype
String? readFilesCommand
Int? runThreadN
String? outStd
String? twopassMode
......@@ -24,8 +24,8 @@ task Star {
--readFilesIn ${sep=',' inputR1} ${sep="," inputR2} \
--outFileNamePrefix ${outFileNamePrefix} \
--genomeDir ${genomeDir} \
${"--readFilesCommand " + readFilesCommand} \
${"--outSAMtype " + outSAMtype} \
--outSAMtype ${default="BAM SortedByCoordinate" outSAMtype} \
--readFilesCommand ${default="zcat" readFilesCommand} \
${"--runThreadN " + runThreadN} \
${"--outStd " + outStd} \
${"--twopassMode " + twopassMode} \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment