annotate muse_call.xml @ 0:c4f5e1994690 draft

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