comparison MutsigCV.xml @ 0:5004e63b170c draft

Uploaded
author morinlab
date Sun, 04 Dec 2016 14:46:22 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5004e63b170c
1 <tool id="mutsigcv" name="MutsigCV" version="1.4">
2 <description>MutSigCV analyzes lists of mutations discovered in DNA sequencing, to identify genes that were mutated more often than expected by chance given background mutation processes.</description>
3 <requirements>
4 <requirement type="package" version="8.1">mcr</requirement>
5 <requirement type="package" version="1.4">mutsigcv</requirement>
6 <requirement type="set_environment">MCR_ROOT</requirement>
7 <requirement type="set_environment">MUTSIGCV_DIR</requirement>
8 </requirements>
9 <command>
10 <!-- MutSig commands based on mode selection -->
11
12 #if $modes.mode_select == "morincoverage"
13
14 sh \$MUTSIGCV_DIR/run_MutSigCV.sh \$MCR_ROOT/v81 $modes.maf_file $__tool_directory__/updated_coverage.txt $__tool_directory__/updated_covariate.txt output.txt $__tool_directory__/mutation_type_dictionary_file.txt \$MUTSIGCV_DIR/chr_files_hg19;
15
16 #elif $modes.mode_select == "custom"
17
18 sh \$MUTSIGCV_DIR/run_MutSigCV.sh \$MCR_ROOT/v81 $modes.mutations_maf $modes.coverage_txt $modes.gene_covariates_txt output.txt \$FILE_PATH/mutation_type_dictionary_file.txt \$MUTSIGCV_DIR/chr_files_hg19;
19
20 #elif $modes.mode_select == "old"
21
22 sh \$MUTSIG_DIR/run_MutSigCV.sh \$MCR_ROOT/v81 $modes.tcga_maf \$MUTSIG_DIR/exome_full192.coverage.txt \$MUTSIG_DIR/gene.covariates.txt output.txt \$MUTSIG_DIR/mutation_type_dictionary_file.txt \$MUTSIG_DIR/chr_files_hg19;
23
24 #end if
25
26 <!-- produce galaxy output add output selection of other files later -->
27 cat output.txt.sig_genes.txt >> $output;
28
29 </command>
30 <inputs>
31 <conditional name="modes">
32 <param name="mode_select" type="select" label="Select mode to run MutSig with preferred file set.">
33 <option value="morincoverage" selected="True">1) Assume full exome coverage with updated file. </option>
34 <option value="custom" >2) Use custom files from history. </option>
35 <option value="old" >3) Use original MutsigCV file set. </option>
36 </param>
37 <when value="morincoverage">
38 <!-- Input parameters needed -->
39 <param name="maf_file" type="data" format="tabular" label="Mutations.maf file." />
40 </when>
41 <when value="custom">
42 <param name="mutations_maf" type="data" format="tabular" label="Mutations.maf file." />
43 <param name="coverage_txt" type="data" format="tabular" label="Coverage.txt file." />
44 <param name="gene_covariates_txt" type="data" format="tabular" label="Gene_covariates.txt file." />
45 </when>
46 <when value="old">
47 <!-- Input parameters needed -->
48 <param name="tcga_maf" type="data" format="tabular" label="Mutations.maf file." />
49 </when>
50 </conditional>
51 </inputs>
52 <outputs>
53 <data name="output" label="MutsigCV significant genes" format="txt"/>
54 </outputs>
55 <help>
56 Reference:
57 -----------------
58
59 Lawrence MS, Stojanov P, Polak P, Kryukov GV, et al. Mutational heterogenieity in cancer and the search for new cancer genes. Nature. 2013 Jun 16. doi: 10.1038/nature12213
60
61 For More Information:
62 ----------------------------------
63 Files used by MutsigCV can be downloaded at: http://www.broadinstitute.org/cancer/cga/mutsig_run#reference_files
64
65 More detailed information about these files can be found at:
66 http://www.broadinstitute.org/cancer/software/genepattern/modules/docs/MutSigCV/1?print=yes
67
68 </help>
69 <citations>
70 <citation type="bibtex">
71 @article {Albuquerque089631,
72 author = {Albuquerque, Marco A and Grande, Bruno M and Ritch, Elie and Jessa, Selin and Krzywinski, Martin I and Grewal, Jasleen and Shah, Sohrab and Boutros, Paul and Morin, Ryan},
73 title = {Enhancing Knowledge Discovery from Cancer Genomics Data with Galaxy},
74 year = {2016},
75 doi = {10.1101/089631},
76 publisher = {Cold Spring Harbor Labs Journals},
77 URL = {http://biorxiv.org/content/early/2016/11/26/089631},
78 eprint = {http://biorxiv.org/content/early/2016/11/26/089631.full.pdf},
79 journal = {bioRxiv}
80 }
81 </citation>
82
83 <citation type="bibtex">
84 @article{
85 goecks2010galaxy,
86 title={Galaxy: a comprehensive approach for supporting accessible, reproducible, and transparent computational research in the life sciences},
87 author={Goecks, Jeremy and Nekrutenko, Anton and Taylor, James and others},
88 journal={Genome Biol},
89 volume={11},
90 number={8},
91 pages={R86},
92 year={2010}
93 }
94 </citation>
95
96
97 <citation type="bibtex">
98
99 @ARTICLE{Lawrence2014-wp,
100 title = "Discovery and saturation analysis of cancer genes across 21
101 tumour types",
102 author = "Lawrence, Michael S and Stojanov, Petar and Mermel, Craig H and
103 Robinson, James T and Garraway, Levi A and Golub, Todd R and
104 Meyerson, Matthew and Gabriel, Stacey B and Lander, Eric S and
105 Getz, Gad",
106 journal = "Nature",
107 publisher = "Nature Research",
108 volume = 505,
109 number = 7484,
110 pages = "495--501",
111 month = "5~" # jan,
112 year = 2014,
113 language = "en"
114 }
115
116
117 </citation>
118 </citations>
119 </tool>
120
121