Skip to content

Commit 2ec7611

Browse files
committed
added JASPAR2022
1 parent d637f61 commit 2ec7611

File tree

9 files changed

+52
-1098
lines changed

9 files changed

+52
-1098
lines changed

.DS_Store

0 Bytes
Binary file not shown.

docs/changelog.rst

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

5+
Version 2.0.0
6+
-------------
7+
Released date: September 08, 2021
8+
9+
Notes: Added the 9th release of JASPAR (JASPAR2022) to the package.
10+
511
Version 1.6.0
612
-------------
713
Released date: July 02, 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 = 'v1.6.0'
25+
release = 'v2.0.0'
2626

2727

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

docs/how_to_use.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You can find the available releases/version of JASPAR using `get_releases` metho
4848
.. code-block:: pycon
4949
5050
>>> print(jdb_obj.get_releases())
51-
['JASPAR2020', 'JASPAR2018', 'JASPAR2016', 'JASPAR2014']
51+
['JASPAR2022', 'JASPAR2020', 'JASPAR2018', 'JASPAR2016', 'JASPAR2014']
5252
5353
5454
Get motif by using JASPAR ID

docs/intro.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ 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/
1213
- `JASPAR2020` - http://jaspar2020.genereg.net/
1314
- `JASPAR2018` - http://jaspar2018.genereg.net/
1415
- `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,7 +42,7 @@
4242
for motif in motifs:
4343
pass # do something with the motif
4444
"""
45-
__version__ = '1.6.0'
45+
__version__ = '2.0.0'
4646

4747

4848
import warnings
@@ -55,13 +55,14 @@
5555
from .utils import *
5656

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

64-
JASPAR_LATEST_RELEASE = "JASPAR2020"
65+
JASPAR_LATEST_RELEASE = "JASPAR2022"
6566

6667
JASPAR_DFLT_COLLECTION = "CORE"
6768

pyjaspar/data/JASPAR2022.sqlite

11.9 MB
Binary file not shown.

0 commit comments

Comments
 (0)