Skip to content

Commit

Permalink
reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHarrop committed Jun 18, 2024
1 parent aa2b381 commit 385e7ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/galaxy/datatypes/binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -3761,12 +3761,16 @@ def sniff(self, filename: str) -> bool:

class Pod5(Binary):
"""
Class describing a Pod5 file
Class describing a POD5 file. The POD5 Format Specification is at
https://pod5-file-format.readthedocs.io/en/latest/SPECIFICATION.html
>>> from galaxy.datatypes.sniff import get_test_fname
>>> fname = get_test_fname('test.pod5')
>>> Pod5().sniff(fname)
True
>>> fname = get_test_fname('test.fast5.tar')
>>> Pod5().sniff(fname)
False
"""

file_ext = "pod5"
Expand Down
Binary file modified lib/galaxy/datatypes/test/test.pod5
Binary file not shown.

0 comments on commit 385e7ab

Please sign in to comment.