0
|
1 <tool id="star-fusion-new" name="Star-fusion-new" version="0.0.2">
|
|
2 <description>Fusion-finding Pipeline using the STAR aligner</description>
|
|
3 <command>
|
|
4 sh star_fusion_toolshed_wrapper.sh
|
|
5 $left_input
|
|
6 $right_input
|
|
7 "subdir"
|
|
8 </command>
|
|
9 <macros>
|
|
10 </macros>
|
|
11 <stdio>
|
|
12 <exit_code range="1:" level="fatal" description="Error returned from pipeline" />
|
|
13 </stdio>
|
|
14 <regex match="Must investigate error above."
|
|
15 source="stderr"
|
|
16 level="fatal"
|
|
17 description="Unknown error encountered" />
|
|
18 <inputs>
|
|
19 <param format="fastq" name="left_input" type="data" label="Left/Forward strand reads" help=""/>
|
|
20 <param format="fastq" name="right_input" type="data" label="Right/Reverse strand reads" help=""/>
|
|
21 </inputs>
|
|
22 <outputs>
|
|
23 <data format="txt" name="starfusion_log" label="${tool.name} on ${on_string}: log" from_work_dir="subdir/Log.out"/>
|
|
24 <data format="bam" name="aligned_bam" label="${tool.name} on ${on_string}: Aligned Bam" from_work_dir="subdir/Aligned.sortedByCoord.out.bam"/>
|
|
25 <data format="tabular" name="candidates" label="${tool.name} on ${on_string}: Fusion candidates" from_work_dir="subdir/star-fusion.fusion_candidates.final.abridged"/>
|
|
26 <data format="tabular" name="chimeric_junc" label="${tool.name} on ${on_string}: Chimeric.out.junction" from_work_dir="subdir/Chimeric.out.junction"/>
|
|
27 </outputs>
|
|
28 <tests>
|
|
29 <test>
|
|
30 <param name="left_input" value="left.fq" />
|
|
31 <param name="right_input" value="right.fq" />
|
|
32 <output name="aligned_bam" file="Aligned.out.bam"/>
|
|
33 <output name="chimeric_junction" file="chimeric.out.junction"/>
|
|
34 </test>
|
|
35 </tests>
|
|
36 <help>
|
|
37 STAR-fusion New
|
|
38 </help>
|
|
39 </tool>
|