0
|
1 <tool id="bam_parallelism_test" name="BAM Parallelism Test" version="2.4.1">
|
|
2 <description>
|
|
3 BAM Parallelism Test
|
|
4 </description>
|
2
|
5 <parallelism method="multi" split_inputs="interval" split_mode="by_rname" real_split="False" merge_outputs="output"/>
|
0
|
6 <command>
|
|
7
|
2
|
8 samtools view $normal \$(cat $interval) | head -n 5 > $output;
|
|
9 samtools view $tumour \$(cat $interval) | head -n 5 >> $output;
|
0
|
10
|
|
11 </command>
|
|
12 <inputs>
|
|
13 <param type="data" format="bam" name="normal" label="Normal Alignment BAM"/>
|
|
14 <param type="data" format="bam" name="tumour" label="Tumour Alignment BAM"/>
|
3
|
15 <param type="data" format="txt" name="interval" label="Interval File"/>
|
0
|
16 </inputs>
|
|
17 <outputs>
|
2
|
18 <data format="txt" name="output"/>
|
0
|
19 </outputs>
|
|
20 </tool> |