Skip to content

Commit

Permalink
Fix URL to GRCh37 Biomart
Browse files Browse the repository at this point in the history
  • Loading branch information
Chiara Rasi committed Mar 21, 2024
1 parent a390c0d commit ae944ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [unreleased]
### Fixed
- Replaced Biomart URL to resources in build 37; "https://feb2014.archive.ensembl.org/biomart/martservice?query=" -> "https://www.grch37,ensembl.org/biomart/martservice?query="

## [1.5.1]
### Fixed
- Revert to python 3.8 in Dockerfile to avoid `RuntimeError: can't start new thread` issue
Expand Down
3 changes: 2 additions & 1 deletion schug/load/biomart.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
import requests

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



class EnsemblXML:
"""Class with functions to create xml query files for ensembl biomart
Expand Down

0 comments on commit ae944ec

Please sign in to comment.