# HG changeset patch # User brigidar # Date 1446486332 18000 # Node ID 032d2c8cf8ae35c445340802262bede19b121039 # Parent 75cedeb179aae82152b72e1010676b12f190c99f Uploaded diff -r 75cedeb179aa -r 032d2c8cf8ae vcf_to_snp.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vcf_to_snp.xml Mon Nov 02 12:45:32 2015 -0500 @@ -0,0 +1,55 @@ + + vcf to snp for fasta + + + + + +## 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. + + + vcf_snp.py + -s ${vcf} + -o output.txt; + cut -f1 output.txt > header.txt | cut -f2- output.txt > seq.txt; + cat seq.txt | sed 's/[[:blank:]]//g' >seq2.txt; + paste header.txt seq2.txt >tab.txt; + + + + + + + + + + + + + + + + + + + + +.. class:: infomark + +**What it does** + +Transforms a vcf into a snp tab file + +------------- + +.. class:: infomark + +**Tool Author** + +Brigida Rusconi + + + + \ No newline at end of file