biofiles 0.1.3__tar.gz → 0.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. {biofiles-0.1.3 → biofiles-0.1.4}/PKG-INFO +1 -1
  2. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/dialects/genomic_base.py +3 -0
  3. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles.egg-info/PKG-INFO +1 -1
  4. {biofiles-0.1.3 → biofiles-0.1.4}/pyproject.toml +1 -1
  5. {biofiles-0.1.3 → biofiles-0.1.4}/LICENSE +0 -0
  6. {biofiles-0.1.3 → biofiles-0.1.4}/README.md +0 -0
  7. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/__init__.py +0 -0
  8. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/bam.py +0 -0
  9. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/common.py +0 -0
  10. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/dialects/__init__.py +0 -0
  11. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/dialects/detector.py +0 -0
  12. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/dialects/gencode.py +0 -0
  13. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/dialects/refseq.py +0 -0
  14. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/dialects/stringtie.py +0 -0
  15. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/fai.py +0 -0
  16. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/fasta.py +0 -0
  17. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/gff.py +0 -0
  18. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/gtf.py +0 -0
  19. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/repeatmasker.py +0 -0
  20. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/types/__init__.py +0 -0
  21. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/types/alignment.py +0 -0
  22. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/types/feature.py +0 -0
  23. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/types/repeat.py +0 -0
  24. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/types/sequence.py +0 -0
  25. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/utility/__init__.py +0 -0
  26. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/utility/cli.py +0 -0
  27. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles/utility/feature.py +0 -0
  28. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles.egg-info/SOURCES.txt +0 -0
  29. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles.egg-info/dependency_links.txt +0 -0
  30. {biofiles-0.1.3 → biofiles-0.1.4}/biofiles.egg-info/top_level.txt +0 -0
  31. {biofiles-0.1.3 → biofiles-0.1.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: biofiles
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Pure-Python, zero-dependency collection of bioinformatics-related file readers and writers
5
5
  Author-email: Tigran Saluev <tigran@saluev.com>
6
6
  Maintainer-email: Tigran Saluev <tigran@saluev.com>
@@ -2,18 +2,21 @@ from biofiles.types.feature import Feature
2
2
 
3
3
 
4
4
  class Gene(Feature):
5
+ id: str
5
6
  biotype: str
6
7
  name: str
7
8
  transcripts: list["Transcript"]
8
9
 
9
10
 
10
11
  class Transcript(Feature):
12
+ id: str
11
13
  biotype: str
12
14
  gene: Gene
13
15
  exons: list["Exon"]
14
16
 
15
17
 
16
18
  class Exon(Feature):
19
+ number: int
17
20
  transcript: Transcript
18
21
  cdss: list["CDS"]
19
22
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: biofiles
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Pure-Python, zero-dependency collection of bioinformatics-related file readers and writers
5
5
  Author-email: Tigran Saluev <tigran@saluev.com>
6
6
  Maintainer-email: Tigran Saluev <tigran@saluev.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "biofiles"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  authors = [
9
9
  { name="Tigran Saluev", email="tigran@saluev.com" },
10
10
  ]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes