|
0
|
1 <tool id="muse_call" name="muse call" version="1.0.rc">
|
|
|
2 <description>First step of somatic point mutation caller for tumor-normal paired samples in next-generation sequencing data.</description>
|
|
|
3 <requirements>
|
|
|
4 <requirement type="package" version="1.0.rc" >muse</requirement>
|
|
|
5 <requirement type="package" version="1.7">samtools</requirement>
|
|
5
|
6 <requirement type="package" version="1.0" >openssl</requirement>
|
|
0
|
7 </requirements>
|
|
1
|
8 <macros>
|
|
|
9 <import>muse_macros.xml</import>
|
|
|
10 </macros>
|
|
0
|
11 <command> <![CDATA[
|
|
|
12 ##creation of the bam indexes and execution of the MuSE call command with all the advanced options
|
|
1
|
13
|
|
5
|
14 samtools index $input2 2> $log && samtools index $input3 2> $log &&
|
|
1
|
15
|
|
|
16 MuSE call -O variant_call
|
|
|
17 #if $reference_source.reference_source_selector == "history"
|
|
|
18 -f $reference_source.reference
|
|
|
19 #end if
|
|
|
20 #if $reference_source.reference_source_selector == "cached"
|
|
|
21 -f $reference_source.ref_file.fields.path
|
|
|
22 #end if
|
|
|
23
|
|
|
24 $input2 $input3
|
|
|
25
|
|
0
|
26 #if $region
|
|
|
27 -r $region
|
|
|
28 #end if
|
|
|
29 #if $positions
|
|
|
30 -l $positions
|
|
5
|
31 #end if
|
|
|
32 2> $log
|
|
|
33 ]]>
|
|
0
|
34 </command>
|
|
|
35 <inputs>
|
|
1
|
36 <expand macro="reference_loc"/>
|
|
0
|
37 <param format="bam" name="input2" type="data" label="tumor bam" help="tumor sample bamfile"/>
|
|
|
38 <param format="bam" name="input3" type="data" label="normal bam" help="normal sample bamfile"/>
|
|
|
39 <param name="region" type="text" optional="true" label="region" help="(chr:pos-pos)"/>
|
|
|
40 <param format="txt,bed" name="positions" type="data" optional="true" label="list of regions" help="file txt or BED (chr:pos-pos or BED),with one region per line" />
|
|
|
41 </inputs>
|
|
|
42 <outputs>
|
|
|
43 <data format="txt" name="output" from_work_dir="variant_call.MuSE.txt" label="${tool.name} on ${on_string}"/>
|
|
5
|
44 <data format="txt" name="log" label="${tool.name} on ${on_string} log"/>
|
|
0
|
45 </outputs>
|
|
|
46 <tests>
|
|
|
47 <test>
|
|
4
|
48 <param name="input1" value="test_fasta.fa" ftype="fasta"/>
|
|
0
|
49 <param name="input2" value="Muse_test_tumoral.bam"/>
|
|
|
50 <param name="input3" value="Muse_test_normal.bam"/>
|
|
|
51 <output name="output" file="results.txt" lines_diff="8"/>
|
|
|
52 </test>
|
|
|
53 </tests>
|
|
|
54 <help>
|
|
|
55 **MuSE call**, takes as input the indexed reference genome FASTA file and the BAM file from normal and tumoral sample.
|
|
|
56 The BAM files require aligning all the sequence reads against the reference genome using the Burrows-Wheeler alignment tool (BWA),
|
|
|
57 with either the backtrack or the maximal exact matches (MEM) algorithm. In addition,
|
|
|
58 the BAM files need to be processed by following the Genome Analysis Toolkit (GATK) Best Practices that include:
|
|
|
59 Marking duplicates,realigning the paired tumor-normal BAMs jointly recalibrating base quality scores.
|
|
|
60 More information at MuSE: http://bioinformatics.mdanderson.org/main/MuSE
|
|
|
61
|
|
|
62 Galaxy wrapper for MuSE call implements all options available through the command line. Supported options are described below.
|
|
|
63
|
|
|
64 Usage: MuSE call [options] tumor.bam matched_normal.bam
|
|
|
65 Options:
|
|
|
66 -f FILE faidx indexed reference sequence file
|
|
|
67 -r STR single region (chr:pos-pos) where somatic
|
|
|
68 mutations are called
|
|
|
69 -l FILE list of regions (chr:pos-pos or BED), one
|
|
|
70 region per line
|
|
|
71 -O STR output file name (suffix '.MuSE.txt' is
|
|
|
72 automatically added)
|
|
|
73 </help>
|
|
|
74 <citations>
|
|
|
75 <citation type="doi">10.1186/s13059-016-1029-6</citation>
|
|
|
76 </citations>
|
|
|
77 </tool>
|