Skip to content
Snippets Groups Projects
Commit f8fea5fe authored by Cats's avatar Cats
Browse files

Merge branch 'quantification' of https://github.com/biowdl/tasks into quantification

parents ee155ce8 89801929
No related branches found
No related tags found
1 merge request!4Add quantification tools
......@@ -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