# HG changeset patch # User devteam # Date 1475508175 14400 # Node ID 586f4536fc65ab48fbae0e6f1a922d08e872929f # Parent 59d4413e75ebb22be7aba4d43f67b10b93c23342 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcflib/vcfsort commit b94a1012a2c76e77564f504543e90a692a8de562 diff -r 59d4413e75eb -r 586f4536fc65 macros.xml --- a/macros.xml Mon Nov 09 12:34:33 2015 -0500 +++ b/macros.xml Mon Oct 03 11:22:55 2016 -0400 @@ -1,7 +1,7 @@ - vcflib + vcflib @@ -10,6 +10,7 @@ + 1.0.0_rc1 diff -r 59d4413e75eb -r 586f4536fc65 vcfsort.xml --- a/vcfsort.xml Mon Nov 09 12:34:33 2015 -0500 +++ b/vcfsort.xml Mon Oct 03 11:22:55 2016 -0400 @@ -1,27 +1,30 @@ - - 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 + + macros.xml + + (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). + + +