Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

Commit

Permalink
Release beta 31
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-ucsc committed Jul 12, 2021
2 parents 8a036e8 + 9ac8113 commit c6db04c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="hca-metadata-api",
version="1.0b30",
version="1.0b31",
license='MIT',
install_requires=[
"dataclasses >= 0.6;python_version<'3.7'"
Expand Down
4 changes: 4 additions & 0 deletions src/humancellatlas/data/metadata/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,10 @@ def file_format(self) -> str:
f"Use File.format instead.", DeprecationWarning)
return self.format

@property
def is_matrix(self) -> bool:
return any('matrix' in c.lower() for c in self.content_description)


@dataclass(init=False)
class SequenceFile(File):
Expand Down

0 comments on commit c6db04c

Please sign in to comment.