File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 1.1.8 (30.12.25)
2+ - to_gtf and to_gff3: fix bug where 'phase' (gtf) and 'frame' (gff3) are erroneously added to attributes field
3+
14# 1.1.7 (16.12.25)
25- window_ranges: fix sort order issue in when using by (#98 and #105)
36- window_ranges: added argument add_window_id, updated documentation
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ available at https://pyranges1.readthedocs.io/
2222## Recent Changelog
2323
2424```
25+ # 1.1.8 (30.12.25)
26+ - to_gtf and to_gff3: fix bug where 'phase' (gtf) and 'frame' (gff3) are erroneously added to attributes field
27+
2528# v1.1.7 (16.12.25)
2629- window_ranges: fix sort order issue in when using by (#98 and #105)
2730- window_ranges: added argument add_window_id, updated documentation
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " pyranges1"
7- version = " 1.1.7 "
7+ version = " 1.1.8 "
88description = " GenomicRanges for Python."
99requires-python = " >=3.12.0"
1010readme = " README.md"
Original file line number Diff line number Diff line change @@ -240,12 +240,12 @@ def _pyranges_to_gtf_like(
240240 if out_format == "gtf" :
241241 all_columns = _ordered_gtf_columns [:- 1 ]
242242 # first: gff column to pyranges column
243- rename_columns = GFF3_COLUMNS_TO_PYRANGES .copy ()
243+ rename_columns = GTF_COLUMNS_TO_PYRANGES .copy ()
244244 attribute_formatter = gtf_formatter
245245 elif out_format == "gff3" :
246246 all_columns = _ordered_gff3_columns [:- 1 ]
247247 # first: gff column to pyranges column
248- rename_columns = GTF_COLUMNS_TO_PYRANGES .copy ()
248+ rename_columns = GFF3_COLUMNS_TO_PYRANGES .copy ()
249249 attribute_formatter = gff3_formatter
250250 else :
251251 msg = f"Invalid output format: { out_format } . Must be one of 'gtf' or 'gff3'."
You can’t perform that action at this time.
0 commit comments