Mercurial > repos > iuc > gemini
comparison gemini_load.xml @ 0:14caa57eca63 draft
Uploaded
| author | iuc |
|---|---|
| date | Mon, 11 Aug 2014 07:44:30 -0400 |
| parents | |
| children | e6512af21622 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:14caa57eca63 |
|---|---|
| 1 <tool id="gemini_@BINARY@" name="GEMINI @BINARY@" version="@VERSION@.0"> | |
| 2 <description></description> | |
| 3 <expand macro="requirements" /> | |
| 4 <expand macro="version_command" /> | |
| 5 <macros> | |
| 6 <import>gemini_macros.xml</import> | |
| 7 <token name="@BINARY@">load</token> | |
| 8 </macros> | |
| 9 <command> | |
| 10 <![CDATA[ | |
| 11 gemini @BINARY@ | |
| 12 -v "${ infile }" | |
| 13 -t $annotation_type | |
| 14 | |
| 15 #if $ped: | |
| 16 -p $ped | |
| 17 #end if | |
| 18 | |
| 19 $skip_gerp_bp | |
| 20 $skip_cadd | |
| 21 $skip_gene_tables | |
| 22 $no_load_genotypes | |
| 23 $no_genotypes | |
| 24 $passonly | |
| 25 --cores \${GALAXY_SLOTS:-4} | |
| 26 | |
| 27 "${ outfile }" | |
| 28 ]]> | |
| 29 </command> | |
| 30 <expand macro="stdio" /> | |
| 31 <inputs> | |
| 32 <param name="infile" type="data" format="vcf" label="VCF file to be loaded in the GEMINI database" /> | |
| 33 | |
| 34 <param name="annotation_type" type="select" label="The annotations to be used with the input vcf" help="(-t)"> | |
| 35 <option value="snpEff">snpEff annotated VCF file</option> | |
| 36 <option value="VEP">VEP annotated VCF file</option> | |
| 37 </param> | |
| 38 <param name="ped" type="data" format="tablar" optional="True" label="Sample information file in PED+ format" help="(-p)" /> | |
| 39 | |
| 40 <param name="skip_gerp_bp" type="boolean" truevalue="--skip-gerp-bp" falsevalue="" checked="False" | |
| 41 label="Do not load GERP scores at base pair resolution" help="(--skip-gerp-bp)"/> | |
| 42 | |
| 43 <param name="skip_cadd" type="boolean" truevalue="--skip-cadd" falsevalue="" checked="False" | |
| 44 label="Do not load CADD scores" help="(--skip-cadd)"/> | |
| 45 | |
| 46 <param name="skip_gene_tables" type="boolean" truevalue="--skip-gene-tables" falsevalue="" checked="False" | |
| 47 label="Do not load gene tables" help="(--skip-gene-tables)"/> | |
| 48 | |
| 49 <param name="no_load_genotypes" type="boolean" truevalue="--no-load-genotypes" falsevalue="" checked="False" | |
| 50 label="Genotypes exist in the file, but should not be stored" help="(--no-load-genotypes)"/> | |
| 51 | |
| 52 <param name="no_genotypes" type="boolean" truevalue="--no-load-genotypes" falsevalue="" checked="False" | |
| 53 label="There are no genotypes in the file" help="e.g. some 1000G VCFs (--no-genotypes)"/> | |
| 54 | |
| 55 <param name="passonly" type="boolean" truevalue="--passonly" falsevalue="" checked="False" | |
| 56 label="Keep only variants that pass all filters" help="e.g. some 1000G VCFs (--passonly)"/> | |
| 57 | |
| 58 </inputs> | |
| 59 <outputs> | |
| 60 <data name="outfile" format="sqlite" label="${tool.name} on ${on_string}" /> | |
| 61 </outputs> | |
| 62 <tests> | |
| 63 <test> | |
| 64 </test> | |
| 65 </tests> | |
| 66 <help> | |
| 67 **What it does** | |
| 68 | |
| 69 Before we can use GEMINI to explore genetic variation, we must first load our VCF file into the GEMINI database framework. | |
| 70 We expect you to have first annotated the functional consequence of each variant in your VCF using either VEP or snpEff. | |
| 71 | |
| 72 http://gemini.readthedocs.org/en/latest/content/loading.html | |
| 73 | |
| 74 @CITATION@ | |
| 75 </help> | |
| 76 <expand macro="citations"/> | |
| 77 </tool> |
