# HG changeset patch # User iuc # Date 1498855406 14400 # Node ID efe8f0e53d3efac60675966000329f088207010a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/snp-sites commit 3a0370239dd8ee753194be5c580b1d9b8ec98bee diff -r 000000000000 -r efe8f0e53d3e snp-sites.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/snp-sites.xml Fri Jun 30 16:43:26 2017 -0400 @@ -0,0 +1,88 @@ + + + from a multi-FASTA alignment file + + snp-sites + + snp-sites -V + + + + + + + + + + + + + + + + + + + sample1 + AGACACAGTCAC + + >sample1 + AGACAC----AC + + >sample1 + AAACGCATTCAN + +**Output files:** + +The output of the tool are three different files in following format: + +- a multi fasta alignment, +- relaxed phylip format and, +- VCF. + +The VCF file for the above specified input is + +The output of the tool are three different files in following format: + +- a multi fasta alignment, +- relaxed phylip format and, +- VCF. + +The VCF file for the above specified input is + +===== === == === === ==== ====== ==== ====== ======= ======= ======= +CHROM POS ID REF ALT QUAL FILTER INFO FORMAT sample1 sample1 sample1 +----- --- -- --- --- ---- ------ ---- ------ ------- ------- ------- +1 2 . G A . . . GT 0 0 1 +----- --- -- --- --- ---- ------ ---- ------ ------- ------- ------- +1 5 . A G . . . GT 0 0 1 +----- --- -- --- --- ---- ------ ---- ------ ------- ------- ------- +1 8 . G .,T . . . GT 0 1 2 +===== === == === === ==== ====== ==== ====== ======= ======= ======= + +Thus the tool identified three variations (SNPs): in 2nd, 5th, and 8th positions (A instead of G, G instead of A, and unknown nucleotide or T instead of G, respectively). + + + ]]> + + + 10.1099/mgen.0.000056 + + diff -r 000000000000 -r efe8f0e53d3e test-data/input.fasta --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/input.fasta Fri Jun 30 16:43:26 2017 -0400 @@ -0,0 +1,6 @@ +>sample1 +AGACACAGTCAC +>sample1 +AGACAC----AC +>sample1 +AAACGCATTCAN diff -r 000000000000 -r efe8f0e53d3e test-data/output.fasta --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/output.fasta Fri Jun 30 16:43:26 2017 -0400 @@ -0,0 +1,6 @@ +>sample1 +GAG +>sample1 +GA- +>sample1 +AGT diff -r 000000000000 -r efe8f0e53d3e test-data/output.phylip --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/output.phylip Fri Jun 30 16:43:26 2017 -0400 @@ -0,0 +1,4 @@ +3 3 +sample1 GAG +sample1 GA- +sample1 AGT diff -r 000000000000 -r efe8f0e53d3e test-data/output.vcf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/output.vcf Fri Jun 30 16:43:26 2017 -0400 @@ -0,0 +1,7 @@ +##fileformat=VCFv4.1 +##contig= +##FORMAT= +#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT sample1 sample1 sample1 +1 2 . G A . . . GT 0 0 1 +1 5 . A G . . . GT 0 0 1 +1 8 . G *,T . . . GT 0 1 2