# HG changeset patch # User cropgeeks # Date 1488211715 18000 # Node ID 326e6b1e926ce96a6cb3df5ceb94ef2edf3d5dbb # Parent 408a644e1e1674d267ce5ee3abb1f86d3f715b58 Uploaded diff -r 408a644e1e16 -r 326e6b1e926c flapjack.py --- 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 ): diff -r 408a644e1e16 -r 326e6b1e926c lib/flapjack.jar Binary file lib/flapjack.jar has changed