comparison oncodrivefm.xml @ 1:fe65a4d95e7a draft

Uploaded
author morinlab
date Wed, 30 Nov 2016 12:34:55 -0500
parents a9c4c014fc47
children
comparison
equal deleted inserted replaced
0:a9c4c014fc47 1:fe65a4d95e7a
25 #elif $advancedsettings.mapoption.mapfile=="included_file": 25 #elif $advancedsettings.mapoption.mapfile=="included_file":
26 -m $__tool_directory__/ensg_kegg.tsv 26 -m $__tool_directory__/ensg_kegg.tsv
27 #end if 27 #end if
28 ./odfm; 28 ./odfm;
29 29
30 cat ./out/odfm-pathways.tsv >> $out_file2; 30 cat ./out/odfm-genes.tsv | grep -v \\# | sort -g -k 3 | awk 'BEGIN {OFS = "\t"}{if ($advancedsettings.qcut > $3 ) print \$1, \$2, \$3; }' >> $out_file1;
31 cat ./out/odfm-genes.tsv >> $out_file1; 31 cat ./out/odfm-pathways.tsv | grep -v \\# | sort -g -k 4 >> $out_file2;
32
33 pwd >> $out_file2;
34 ls ./out/* >> $out_file2;
35 32
36 </command> 33 </command>
37 <inputs> 34 <inputs>
38 <param name="input_maf" format="tabular" type="data" label="Input MAF File" /> 35 <param name="input_maf" format="tabular" type="data" label="Input MAF File" />
39 <section name="advancedsettings" title="Advanced Settings" expanded="false"> 36 <section name="advancedsettings" title="Advanced Settings" expanded="false">
42 <option value="median" selected="true">Median</option> 39 <option value="median" selected="true">Median</option>
43 <option value="mean">Mean</option> 40 <option value="mean">Mean</option>
44 </param> 41 </param>
45 <param name="gthreshold" type="integer" label="Gene Threshold" help="Minimum number of mutations per gene to compute the FM bias" value="2"/> 42 <param name="gthreshold" type="integer" label="Gene Threshold" help="Minimum number of mutations per gene to compute the FM bias" value="2"/>
46 <param name="pthreshold" type="integer" label="Pathway Threshold" help="Minimum number of mutations per pathway to compute the FM bias" value="10" /> 43 <param name="pthreshold" type="integer" label="Pathway Threshold" help="Minimum number of mutations per pathway to compute the FM bias" value="10" />
47 <param name="slices" type="text" label="Slices" help="Slices to process separated by commas(slices=SIFT,PolyPhen,MA)" value="SIFT,PolyPhen"/> 44 <param name="qcut" type="float" label="Q value cutoff" help="Only return genes with Q value below this threshold" value="1.0" />
45 <param name="slices" type="text" label="Slices" help="Slices to process separated by commas(slices=SIFT,PPH2,MA)" value="SIFT,PPH2"/>
48 <conditional name="mapoption"> 46 <conditional name="mapoption">
49 <param name="mapfile" type="select" label="Choose the source for the OncodriveFM Mapping File"> 47 <param name="mapfile" type="select" label="Choose the source for the OncodriveFM Mapping File">
50 <option value="included_file" selected="true">Use hg19 mapping file</option> 48 <option value="included_file" selected="true">Use hg19 mapping file</option>
51 <option value="custom">Use a mapping file from the history</option> 49 <option value="custom">Use a mapping file from the history</option>
52 <option value="no_file">Use no mapping file</option> 50 <option value="no_file">Use no mapping file</option>
74 See url for more information: http://bg.upf.edu/group/projects/oncodrive-fm.php 72 See url for more information: http://bg.upf.edu/group/projects/oncodrive-fm.php
75 73
76 If you use this Galaxy tool in work leading to a scientific publication please cite: 74 If you use this Galaxy tool in work leading to a scientific publication please cite:
77 Gonzalez-Perez A and Lopez-Bigas N. 2012. Functional impact bias reveals cancer drivers. Nucleic Acids Res., 10.1093/nar/gks743. 75 Gonzalez-Perez A and Lopez-Bigas N. 2012. Functional impact bias reveals cancer drivers. Nucleic Acids Res., 10.1093/nar/gks743.
78 </help> 76 </help>
77 <citations>
78 <citation type="bibtex">
79 @ARTICLE{Gonzalez-Perez2012-wq,
80 title = "Functional impact bias reveals cancer drivers",
81 author = "Gonzalez-Perez, Abel and Lopez-Bigas, Nuria",
82 journal = "Nucleic Acids Res.",
83 volume = 40,
84 number = 21,
85 pages = "e169--e169",
86 month = "1~" # nov,
87 year = 2012
88 }
89
90
91 </citation>
92 <citation type="bibtex">
93 @article {Albuquerque089631,
94 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},
95 title = {Enhancing Knowledge Discovery from Cancer Genomics Data with Galaxy},
96 year = {2016},
97 doi = {10.1101/089631},
98 publisher = {Cold Spring Harbor Labs Journals},
99 URL = {http://biorxiv.org/content/early/2016/11/26/089631},
100 eprint = {http://biorxiv.org/content/early/2016/11/26/089631.full.pdf},
101 journal = {bioRxiv}
102 }
103
104 </citation>
105 <citation type="bibtex">
106 @misc{
107 goecks2010galaxy,
108 title={Galaxy: a comprehensive approach for supporting accessible, reproducible, and transparent computational research in the life sciences},
109 author={Goecks, Jeremy and Nekrutenko, Anton and Taylor, James and others},
110 journal={Genome Biol},
111 volume={11},
112 number={8},
113 pages={R86},
114 year={2010}
115 }
116 </citation>
117
118 </citations>
79 </tool> 119 </tool>
80 120