Mercurial > repos > iuc > snpsift_dbnsfp
comparison snpSift_geneSets.xml @ 131:eccdcad64602 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift_genesets commit 40cf370ec93cf9d87210528e6d2426a490fdf852
author | iuc |
---|---|
date | Fri, 08 May 2015 22:37:16 -0400 |
parents | a7aed5f7a2ef |
children |
comparison
equal
deleted
inserted
replaced
130:95d17c7e7370 | 131:eccdcad64602 |
---|---|
1 <tool id="snpSift_geneSets" name="SnpSift GeneSets" version="4.0.0"> | |
2 <description>Annotating GeneSets, such as Gene Ontology, KEGG, Reactome</description> | |
3 <!-- | |
4 You can change the amount of memory used, just change the -Xmx parameter (e.g. use -Xmx2G for 2Gb of memory) | |
5 --> | |
6 <macros> | |
7 <import>snpSift_macros.xml</import> | |
8 </macros> | |
9 <expand macro="requirements" /> | |
10 <expand macro="stdio" /> | |
11 <command> | |
12 java -Xmx2G -jar \$SNPEFF_JAR_PATH/SnpSift.jar geneSets -v | |
13 #if $db_opts.db_opts_selector == "db" | |
14 "${db_opts.database.fields.path}" | |
15 #elif $db_opts.db_opts_selector == "histdb" | |
16 "$db_opts.histdb" | |
17 #end if | |
18 | |
19 $input 2> $log > $output | |
20 </command> | |
21 <inputs> | |
22 <param format="vcf" name="input" type="data" label="Variant input file in VCF format"/> | |
23 <conditional name="db_opts"> | |
24 <param name="db_opts_selector" type="select" label="Select Annotation database" help=""> | |
25 <option value="db" selected="True">Locally installed database</option> | |
26 <option value="histdb">database from your history</option> | |
27 </param> | |
28 <when value="db"> | |
29 <param name="database" type="select" label="Molecular Signatures Database (MSigDB)"> | |
30 <options from_data_table="snpeff_msigdb_database" /> | |
31 </param> | |
32 <param name="histdb" type="hidden" value="" /> | |
33 </when> | |
34 <when value="histdb"> | |
35 <param name="histdb" type="data" format="txt" label="Molecular Signatures Database (MSigDB)" /> | |
36 </when> | |
37 </conditional> | |
38 </inputs> | |
39 <outputs> | |
40 <data format="vcf" name="output" label="${tool.name} on ${on_string}: VCF" /> | |
41 <data format="txt" name="log" label="${tool.name} on ${on_string}: log" /> | |
42 </outputs> | |
43 <tests> | |
44 </tests> | |
45 <help> | |
46 This tool uses `SnpSift GeneSets`_ to add annotations from `MSigDB`_, a collection of annotated gene sets from different sources including Gene Ontology (GO), KEGG, Reactome. | |
47 | |
48 .. _SnpSift GeneSets: http://snpeff.sourceforge.net/SnpSift.html#geneSets | |
49 | |
50 .. class:: warningmark | |
51 | |
52 The input VCF file must be annotated using SnpEff before performing GeneSets annotations. This is because the tool must know which gene the variant affects. | |
53 | |
54 @EXTERNAL_DOCUMENTATION@ | |
55 | |
56 @CITATION_SECTION@ | |
57 | |
58 For `MSigDB`_, please cite |Subramanian2005|_. | |
59 | |
60 .. _MSigDB: http://www.broadinstitute.org/gsea/msigdb/ | |
61 .. |Subramanian2005| replace:: Subramanian, A., *et al.* (2005) Gene set enrichment analysis: A knowledge-based approach for interpreting genome-wide expression profiles. *Proc. Natl. Acad. Sci. U.S.A.* 102(43), 15545-15550 | |
62 .. _Subramanian2005: http://www.pnas.org/content/102/43/15545 | |
63 </help> | |
64 <expand macro="citations"> | |
65 <citation type="doi">10.1073/pnas.0506580102</citation><!-- MSigDB citation --> | |
66 </expand> | |
67 </tool> |