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

Merge pull request #3 from biowdl/star

modify definition of defaults in star.wdl
parents a3c50d51 26bf1e15
No related branches found
No related tags found
No related merge requests found
......@@ -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