Skip to content

Commit

Permalink
Merge pull request #75 from Clinical-Genomics/fix_missing_exons
Browse files Browse the repository at this point in the history
Use Ensembl v112 to temporarily address the missing exons issue
  • Loading branch information
northwestwitch authored Dec 13, 2024
2 parents 8608a04 + 9a2fc2d commit 4dc2aa3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# [unreleased]
### Fixed
- Some exons are missing when downloading build 38 data using Ensembl v.113 (Oct 2024). Using v.112 (May 2024) until the problem is fixed. Build 37 not affected.

# [1.6.1]
### Fixed
- Security issue related to starlette version by updating fastapi, starlette and some dependencies
- Updated urlib to v.2.2.3 to address the `urllib3's Proxy-Authorization request header isn't stripped during cross-origin redirects` issue
- Updated certifi to v.2024.7.4 to address the `Certifi removes GLOBALTRUST root certificate` issue
Expand Down
2 changes: 1 addition & 1 deletion schug/load/biomart.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

LOG = logging.getLogger(__name__)
BIOMART_37_URL = "https://feb2014.archive.ensembl.org/biomart/martservice?query="
BIOMART_38_URL = "https://www.ensembl.org/biomart/martservice?query="
BIOMART_38_URL = "https://may2024.archive.ensembl.org/biomart/martservice?query="


class EnsemblXML:
Expand Down

0 comments on commit 4dc2aa3

Please sign in to comment.