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

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

parents 33f3aa9a 5d9cab2d
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