Skip to content

Commit b07ccb9

Browse files
committed
added JASPAR2024 and updated version to 3.0.0
1 parent a9dcbfa commit b07ccb9

File tree

9 files changed

+134
-289
lines changed

9 files changed

+134
-289
lines changed

.DS_Store

-14 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Byte-compiled / optimized / DLL files
22
__pycache__/
3-
*.py[cod]
3+
44
*$py.class
55

66
# C extensions

docs/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
=========
44

5+
Version 3.0.0
6+
-------------
7+
Released date: September 24, 2023
8+
9+
Notes: Added the 10th release of JASPAR (JASPAR2024) to the package.
10+
11+
512
Version 2.0.0
613
-------------
714
Released date: September 08, 2021

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Aziz Khan'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = 'v2.1.0'
25+
release = 'v3.0.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

docs/intro.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ pyJASPAR is a python module and a serverless interface to Biopython to query and
99

1010
Currently, pyJASPAR provides access to JASPAR database releases including:
1111

12-
- `JASPAR2022` - http://jaspar.genereg.net/
12+
- `JASPAR2024` - http://jaspar.genereg.net/
13+
- `JASPAR2022` - http://jaspar2022.genereg.net/
1314
- `JASPAR2020` - http://jaspar2020.genereg.net/
1415
- `JASPAR2018` - http://jaspar2018.genereg.net/
1516
- `JASPAR2016` - http://jaspar2016.genereg.net/

pyjaspar/.DS_Store

0 Bytes
Binary file not shown.

pyjaspar/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
for motif in motifs:
4343
pass # do something with the motif
4444
"""
45-
__version__ = '2.1.1'
4645

46+
__version__ = '3.0.0'
4747

4848
import warnings
4949
from Bio import BiopythonWarning
@@ -55,14 +55,15 @@
5555
from .utils import *
5656

5757
jaspar_releases = {
58+
'JASPAR2024': 'JASPAR2024.sqlite',
5859
'JASPAR2022': 'JASPAR2022.sqlite',
5960
'JASPAR2020': 'JASPAR2020.sqlite',
6061
'JASPAR2018': 'JASPAR2018.sqlite',
6162
'JASPAR2016': 'JASPAR2016.sqlite',
6263
'JASPAR2014': 'JASPAR2014.sqlite',
6364
}
6465

65-
JASPAR_LATEST_RELEASE = "JASPAR2022"
66+
JASPAR_LATEST_RELEASE = "JASPAR2024"
6667

6768
JASPAR_DFLT_COLLECTION = "CORE"
6869

0 commit comments

Comments
 (0)