# HG changeset patch # User devteam # Date 1473972830 14400 # Node ID 40296713cd824ea406c6e9abf26a5ed1480c9889 # Parent 433d50620231ecff6d5c034518db1651f5b6ee6f planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcflib/vcfsort commit 0b9b6512272b82637c2f1e831367e89aed77ae79 diff -r 433d50620231 -r 40296713cd82 macros.xml --- a/macros.xml Thu Mar 19 14:46:40 2015 -0400 +++ b/macros.xml Thu Sep 15 16:53:50 2016 -0400 @@ -1,7 +1,7 @@ - vcflib + vcflib @@ -10,6 +10,7 @@ + 1.0.0_rc1 diff -r 433d50620231 -r 40296713cd82 vcfsort.xml --- a/vcfsort.xml Thu Mar 19 14:46:40 2015 -0400 +++ b/vcfsort.xml Thu Sep 15 16:53:50 2016 -0400 @@ -1,27 +1,27 @@ - - Sort VCF dataset by coordinate - (grep ^"#" "${input1}"; grep -v ^"#" "${input1}" | LC_ALL=C sort -k1,1 -k2,2n -V) > "${out_file1}" - - - - - - - - - - - - - - -This tool uses native UNIX sort command to order VCF dataset in coordinate order. For technically inclined the command is:: - - (grep ^"#" INPUT_file ; grep -v ^"#" INPUT_file | LC_ALL=C sort -k1,1 -k2,2n -V) > OUTPUT_file - -.. class:: infomark - -The same result can be achieved with the Galaxy's general purpose sort tool (in this case sort on the first and the second column in ascending order). - - - + + Sort VCF dataset by coordinate + (grep ^"#" "${input1}"; grep -v ^"#" "${input1}" | LC_ALL=C sort -k1,1 -k2,2n -V) > "${out_file1}" + + + + + + + + + + + + + + +This tool uses native UNIX sort command to order VCF dataset in coordinate order. For technically inclined the command is:: + + (grep ^"#" INPUT_file ; grep -v ^"#" INPUT_file | LC_ALL=C sort -k1,1 -k2,2n -V) > OUTPUT_file + +.. class:: infomark + +The same result can be achieved with the Galaxy's general purpose sort tool (in this case sort on the first and the second column in ascending order). + + +