Mercurial > repos > iuc > gemini_pathways
comparison gemini_pathways.xml @ 0:668b63ef3402 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/gemini commit e88029bb12e5262687267293f9d2a694eb00d3f0-dirty
| author | iuc |
|---|---|
| date | Tue, 29 Dec 2015 10:22:42 -0500 |
| parents | |
| children | 71c51883304f |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:668b63ef3402 |
|---|---|
| 1 <tool id="gemini_@BINARY@" name="GEMINI @BINARY@" version="@VERSION@.0"> | |
| 2 <description>Map genes and variants to KEGG pathways</description> | |
| 3 <macros> | |
| 4 <import>gemini_macros.xml</import> | |
| 5 <token name="@BINARY@">pathways</token> | |
| 6 </macros> | |
| 7 <expand macro="requirements" /> | |
| 8 <expand macro="stdio" /> | |
| 9 <expand macro="version_command" /> | |
| 10 <command> | |
| 11 <![CDATA[ | |
| 12 gemini | |
| 13 #if $annotation_databases: | |
| 14 --annotation-dir ${annotation_databases.fields.path} | |
| 15 #end if | |
| 16 @BINARY@ | |
| 17 -v $ensembl | |
| 18 $lof | |
| 19 "${ infile }" | |
| 20 > "${ outfile }" | |
| 21 ]]> | |
| 22 </command> | |
| 23 <inputs> | |
| 24 <expand macro="infile" /> | |
| 25 | |
| 26 <param name="ensembl" type="integer" value="68" label="Version of ensembl genes to use" | |
| 27 help="Supported versions: 66 to 71. use versions that match the VEP/snpEff versions of the annotated vcf for correctness. For e.g VEP v2.6 and snpEff v3.1 use Ensembl 68 version of the genomes. (-v)"> | |
| 28 <validator type="in_range" min="66" max="71"/> | |
| 29 </param> | |
| 30 | |
| 31 <param name="lof" type="boolean" truevalue="--lof" falsevalue="" checked="False" | |
| 32 label="Report only pathways with loss-of-function variants" help="(--lof)"/> | |
| 33 <expand macro="annotation_dir" /> | |
| 34 </inputs> | |
| 35 <outputs> | |
| 36 <data name="outfile" format="tabular" /> | |
| 37 </outputs> | |
| 38 <tests> | |
| 39 <test> | |
| 40 <param name="infile" value="gemini_burden_input.db" ftype="gemini.sqlite" /> | |
| 41 <param name="ensembl" value="68" /> | |
| 42 <output name="outfile" file="gemini_pathways_result.tabular" /> | |
| 43 </test> | |
| 44 </tests> | |
| 45 <help> | |
| 46 **What it does** | |
| 47 | |
| 48 Mapping genes to biological pathways is useful in understanding the function/role played by a gene. | |
| 49 Likewise, genes involved in common pathways is helpful in understanding heterogeneous diseases. | |
| 50 We have integrated the KEGG pathway mapping for gene variants, to explain/annotate variation. | |
| 51 | |
| 52 This requires your VCF be annotated with either snpEff/VEP. | |
| 53 | |
| 54 </help> | |
| 55 <expand macro="citations"/> | |
| 56 </tool> |
