biofiles 0.1.3__py3-none-any.whl → 0.1.4__py3-none-any.whl
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.
- biofiles/dialects/genomic_base.py +3 -0
- {biofiles-0.1.3.dist-info → biofiles-0.1.4.dist-info}/METADATA +1 -1
- {biofiles-0.1.3.dist-info → biofiles-0.1.4.dist-info}/RECORD +6 -6
- {biofiles-0.1.3.dist-info → biofiles-0.1.4.dist-info}/WHEEL +0 -0
- {biofiles-0.1.3.dist-info → biofiles-0.1.4.dist-info}/licenses/LICENSE +0 -0
- {biofiles-0.1.3.dist-info → biofiles-0.1.4.dist-info}/top_level.txt +0 -0
@@ -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
|
+
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>
|
@@ -9,7 +9,7 @@ biofiles/repeatmasker.py,sha256=7KObXELCHQ6oBkO8yK6Znrs6MX8sfVuxNSmOMe0Ogfk,3289
|
|
9
9
|
biofiles/dialects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
10
|
biofiles/dialects/detector.py,sha256=OP42NhQf3s609fmDaRRFEMawgf0VMZdeAfkbK6IL4yM,2461
|
11
11
|
biofiles/dialects/gencode.py,sha256=oxTKmcipalgdhy_eNhCqRd5Rdchz8Pn1SXlQHlg6YuM,7730
|
12
|
-
biofiles/dialects/genomic_base.py,sha256=
|
12
|
+
biofiles/dialects/genomic_base.py,sha256=lzLgvFaJF9nTBnnJoSO_3lOYvBgBRUNOxRDfk1LJKK8,416
|
13
13
|
biofiles/dialects/refseq.py,sha256=ZjTpm-AOLs2jQRU9G4V11uiAAtrJop1OF-HyDIr-IrI,4217
|
14
14
|
biofiles/dialects/stringtie.py,sha256=kuQ6IWRo7c4xkNjN-4jjYy3_dRUPorMaffYvDYvQDD8,834
|
15
15
|
biofiles/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -20,8 +20,8 @@ biofiles/types/sequence.py,sha256=XeJ3wgi8AwRaVYVKmf41y5mOmWQfdsS8ysaRLZWbNoQ,25
|
|
20
20
|
biofiles/utility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
21
|
biofiles/utility/cli.py,sha256=i2kYpPFnpTYdbd_6T-U9-egitKhDGQVDbw5gme4Kelg,4074
|
22
22
|
biofiles/utility/feature.py,sha256=bHUOfYir_Dfk_DEBrlO1GXvkJKDRkpj2YJfSl4w698s,7931
|
23
|
-
biofiles-0.1.
|
24
|
-
biofiles-0.1.
|
25
|
-
biofiles-0.1.
|
26
|
-
biofiles-0.1.
|
27
|
-
biofiles-0.1.
|
23
|
+
biofiles-0.1.4.dist-info/licenses/LICENSE,sha256=CbR8ssdFyViKj25JAlMjIt1_FbiZ1tAC5t-uwUbxqak,1070
|
24
|
+
biofiles-0.1.4.dist-info/METADATA,sha256=F8mUHitETBM_anUAD7OXJeUjk9D6rFweToFttQm5T8s,3361
|
25
|
+
biofiles-0.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
26
|
+
biofiles-0.1.4.dist-info/top_level.txt,sha256=laFaFv8hpkI4U-Pgs0yBaAJXN2_CJKl7jb-m3-tGfSc,9
|
27
|
+
biofiles-0.1.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|