Mercurial > repos > brigidar > vcf_to_snp
view vcf_to_snp.xml @ 6:3a352cb57117 draft
new script updates
author | brigidar |
---|---|
date | Fri, 06 Nov 2015 15:12:17 -0500 |
parents | d5725351bf22 |
children | b617219a70b5 |
line wrap: on
line source
<tool id="vcf_snp" name="vcf to snp" version="0.3"> <description>vcf to snp for fasta</description> <requirements> <!-- Should just use the filter snp that's installed in the path --> </requirements> ## The command is a Cheetah template which allows some Python based syntax. ## Lines starting hash hash are comments. Galaxy will turn newlines into spaces ## ! We only have a simple single command here. <command interpreter="/usr/local/anaconda/bin/python"> vcf_snp.py -s ${vcf} -o output.txt </command> <inputs> <param name="vcf" type="data" label="vcf" help=""/> </inputs> <outputs> <data format="tabular" name="output_file" label="${vcf}" from_work_dir="output.txt"> </data> </outputs> <tests> <!-- Empty --> </tests> <help> .. class:: infomark **What it does** Transforms a vcf into a snp tab file. Has to take the nucleotide from the reference column when identical. ------------- .. class:: infomark **Tool Author** Brigida Rusconi </help> </tool>