Mercurial > repos > anton > vcfallelicprimitives
comparison vcfallelicprimitives.xml @ 3:260173250dd2 draft default tip
Uploaded
author | anton |
---|---|
date | Mon, 15 Sep 2014 14:48:10 -0400 |
parents | 971da09d28aa |
children |
comparison
equal
deleted
inserted
replaced
2:971da09d28aa | 3:260173250dd2 |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | |
1 <tool id="vcfallelicprimitives" name="VcfAllelicPrimitives:" version="0.0.2"> | 2 <tool id="vcfallelicprimitives" name="VcfAllelicPrimitives:" version="0.0.2"> |
2 <requirements> | 3 <description>Split alleleic primitives (gaps or mismatches) into multiple VCF lines</description> |
3 <requirement type="package" version="86723982aa">vcflib</requirement> | 4 <requirements> |
4 </requirements> | 5 <requirement type="package" version="8a5602bf07">vcflib</requirement> |
5 <description>Split alleleic primitives (gaps or mismatches) into multiple VCF lines</description> | 6 </requirements> |
6 <command>cat "${input}" | vcfallelicprimitives ${m_option} -t "${t_option}" > "${out_file1}"</command> | 7 <command> |
7 <inputs> | 8 cat "${input}" | vcfallelicprimitives |
8 <param format="vcf" name="input" type="data" label="Select VCF dataset"/> | 9 ${m_option} |
9 <param name="m_option" type="boolean" checked="true" truevalue="-m" falsevalue="" label="Retain MNPs as separate events" help="--use-mnps option"/> | 10 -t "${t_option}" |
10 <param name="t_option" size="20" type="text" value="Split primitives" label="Mark records which are split with this tag" help="--tag-parsed option"/> | 11 -L "${max_length}" |
11 </inputs> | 12 $keep_info |
12 <outputs> | 13 $keep_geno > "${out_file1}" |
13 <data format="vcf" name="out_file1" /> | 14 </command> |
14 </outputs> | 15 <inputs> |
15 <tests> | 16 <param format="vcf" name="input" type="data" label="Select VCF dataset"/> |
16 <test> | 17 <param name="m_option" type="boolean" checked="false" truevalue="--use-mnps" falsevalue="" label="Retain MNPs as separate events" help="--use-mnps option"/> |
17 <param name="m_option" value="true"/> | 18 <param name="t_option" size="20" type="text" value="Split primitives" label="Tag records which are split apart of a complex allele with this flag. " help="--tag-parsed option"/> |
18 <param name="t_option" value="Split primitives"/> | 19 <param name="max_length" type="integer" size="4" value="200" label="Do not manipulate records in which either the ALT or REF is longer than (bp)" help="--max-length option"/> |
19 <param name="input" value="vcflib.vcf"/> | 20 <param name="keep_info" type="boolean" truevalue="--keep-info" falsevalue="" checked="False" |
20 <output name="out_file1" file="vcfallelicprimitives-test1.vcf"/> | 21 label="Maintain site and allele-level annotations when decomposing" |
21 </test> | 22 help="Note that in many cases, such as multisample VCFs, these won't be valid post-decomposition. For biallelic loci in single-sample VCFs, they should be usable with caution. (--keep-info)"/> |
23 <param name="keep_geno" type="boolean" truevalue="--keep-geno" falsevalue="" checked="False" | |
24 label="Maintain genotype-level annotations when decomposing" | |
25 help="Similar caution should be used for this as for --keep-info. (--keep-geno)"/> | |
26 </inputs> | |
27 <outputs> | |
28 <data format="vcf" name="out_file1" label="${tool.name} on ${on_string}" /> | |
29 </outputs> | |
30 <tests> | |
31 <test> | |
32 <param name="input" value="vcflib.vcf"/> | |
33 <output name="out_file1" file="vcfallelicprimitives-test1.vcf"/> | |
34 </test> | |
22 </tests> | 35 </tests> |
23 <help> | 36 <help> |
24 | 37 |
25 If multiple alleleic primitives (gaps or mismatches) are specified in a single VCF record, this tools splits the record into multiple lines, but drops all INFO fields. "Pure" MNPs are split into multiple SNPs unless the -m flag is provided. Genotypes are phased where complex alleles have been decomposed, provided genotypes in the input. | 38 If multiple alleleic primitives (gaps or mismatches) are specified in a single VCF record, this tools splits the record into multiple lines, but drops all INFO fields. |
39 "Pure" MNPs are split into multiple SNPs unless the -m flag is provided. | |
40 Genotypes are phased where complex alleles have been decomposed, provided genotypes in the input. | |
26 | 41 |
27 The options are:: | 42 The options are:: |
28 | 43 |
29 --use-mnps (-m) | 44 -m, --use-mnps Retain MNPs as separate events (default: false). |
30 Retain MNPs as separate events | 45 -t, --tag-parsed FLAG Tag records which are split apart of a complex allele with this flag. |
31 | 46 -L, --max-length LEN Do not manipulate records in which either the ALT or |
32 --tag-parsed (-t) FLAG | 47 REF is longer than LEN (default: 200). |
33 Tag records which are split apart of a complex allele | 48 -k, --keep-info Maintain site and allele-level annotations when decomposing. |
34 with this flag | 49 Note that in many cases, such as multisample VCFs, these won't |
50 be valid post-decomposition. For biallelic loci in single-sample | |
51 VCFs, they should be usable with caution. | |
52 -g, --keep-geno Maintain genotype-level annotations when decomposing. Similar | |
53 caution should be used for this as for --keep-info. | |
35 | 54 |
36 ---- | 55 ---- |
37 | 56 |
38 Vcfallelicprimitives is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib). | 57 Vcfallelicprimitives is a part of VCFlib toolkit developed by Erik Garrison (https://github.com/ekg/vcflib). |
39 | 58 |
40 </help> | 59 </help> |
41 </tool> | 60 </tool> |
61 |