# HG changeset patch # User petr-novak # Date 1709543794 0 # Node ID 04021cfd51701253c9856080d6df1e53aadfa617 planemo upload for repository https://github.com/kavonrtep/galaxy_packages commit 5269b4297ea690bce0802c3c1cb217f24290f1ec-dirty diff -r 000000000000 -r 04021cfd5170 README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Mon Mar 04 09:16:34 2024 +0000 @@ -0,0 +1,14 @@ +Krona visualistion on generic hierarchy files. + +Input file must be a tab-delimited file with first column being a count, rest the hierarchy, for example:: + + 2 Fats Saturated fat + 3 Fats Unsaturated fat Monounsaturated fat + 3 Fats Unsaturated fat Polyunsaturated fat + 13 Carbohydrates Sugars + 4 Carbohydrates Dietary fiber + 21 Carbohydrates + 5 Protein + 4 + +Would yield the following graph: http://krona.sourceforge.net/examples/text.krona.html \ No newline at end of file diff -r 000000000000 -r 04021cfd5170 krona_text.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/krona_text.xml Mon Mar 04 09:16:34 2024 +0000 @@ -0,0 +1,58 @@ + + + Visualise any hierarchical data + + + krona + + tempinput && + head tempinput && + sed -i 's/;/\t/g' tempinput && + +#else + cp '${inputfile}' tempinput && + +#end if + +head tempinput && +export TERM=dumb && +ktImportText tempinput +]]> + + + + + + + + + + + + + + + + + + +Input file must be a tab-delimited file with first column being a count, rest the hierarchy, for example:: + + 2 Fats Saturated fat + 3 Fats Unsaturated fat Monounsaturated fat + 3 Fats Unsaturated fat Polyunsaturated fat + 13 Carbohydrates Sugars + 4 Carbohydrates Dietary fiber + 21 Carbohydrates + 5 Protein + 4 + +Would yield the following graph: http://krona.sourceforge.net/examples/text.krona.html +This tool is a modification of https://toolshed.g2.bx.psu.edu/view/saskia-hiltemann/krona_text/b14f1444e464 + +