Mercurial > repos > cropgeeks > flapjack
changeset 28:326e6b1e926c draft
Uploaded
author | cropgeeks |
---|---|
date | Mon, 27 Feb 2017 11:08:35 -0500 |
parents | 408a644e1e16 |
children | 23afb241b86f |
files | flapjack.py lib/flapjack.jar |
diffstat | 2 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/flapjack.py Mon Feb 27 04:20:16 2017 -0500 +++ b/flapjack.py Mon Feb 27 11:08:35 2017 -0500 @@ -1,9 +1,9 @@ -from galaxy.datatypes.data import Text +from galaxy.datatypes.data import Tabular class FlapjackFormat(Text): file_ext = "flapjack" -class FlapjackMapFormat(Text): +class FlapjackMapFormat(Tabular): file_ext = "fjmap" def sniff( self, filename ): @@ -14,7 +14,7 @@ return False return True -class FlapjackGenotypeFormat(Text): +class FlapjackGenotypeFormat(Tabular): file_ext = "fjgenotype" def sniff( self, filename ): @@ -25,7 +25,7 @@ return False return True -class FlapjackPhenotypeFormat(Text): +class FlapjackPhenotypeFormat(Tabular): file_ext = "fjphenotye" def sniff( self, filename ): @@ -36,7 +36,7 @@ return False return True -class FlapjackQtlFormat(Text): +class FlapjackQtlFormat(Tabular): file_ext = "fjqtl" def sniff( self, filename ): @@ -47,7 +47,7 @@ return False return True -class FlapjackGraphFormat(Text): +class FlapjackGraphFormat(Tabular): file_ext = "fjgraph" def sniff( self, filename ):