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

Merge branch 'master' into quantification

parents 1c1a9554 8155c98c
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