Skip to content

Commit

Permalink
bump to 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanguage committed Mar 9, 2021
1 parent 7fddd61 commit b5c803d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 19 deletions.
2 changes: 1 addition & 1 deletion coolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.3'
__version__ = '0.3.4'
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ LABEL version="1"
LABEL software="CoolBox"
LABEL software.version="latest"
LABEL website="https://github.com/Nanguage/CoolBox"
LABEL documentation="https://github.com/Nanguage/CoolBox/wiki"
LABEL documentation="https://gangcaolab.github.io/CoolBox/index.html"
LABEL license="https://github.com/Nanguage/CoolBox/blob/master/LICENSE"
LABEL tags="Bioinformatics,Genomics,Hi-C,Visualization"

MAINTAINER [email protected]

ENV version=0.2.1
ENV version=0.3.4

ENV MINICONDA https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

Expand Down
6 changes: 2 additions & 4 deletions docs/source/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ git clone https://github.com/GangCaoLab/CoolBox.git
$ cd CoolBox
$ conda env create --file environment.yml
$ conda activate coolbox
$ python -m pip install . -vv
$ python setup.py install
```

Enable `ipywidgets` to use the browser in Jupyter notebook:
Expand All @@ -42,11 +42,9 @@ interactively explore their genomic data.

For this purpose, you can reference this
[Quickstart (API) page](https://gangcaolab.github.io/CoolBox/quick_start_API.html).


Or just import `coolbox` as a
Python plot package use in their own plot
script(see [example](https://todo)).
script.


### CLI
Expand Down
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ dependencies:
- pairix
- tabix
- samtools>=1.10
- libcurl
14 changes: 5 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
scipy
scipy>=1.0.0
numpy
pandas
statsmodels
matplotlib
jupyter
ipywidgets
matplotlib>=3.1.1
jupyter>=1.0.0
ipywidgets>=7.5.1
nbformat
voila
svgutils

intervaltree
dna_features_viewer

h5py
cooler
pybbi

numpydoc
fire

pytest
pytest
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
Expand Down Expand Up @@ -62,5 +63,5 @@ def get_install_requires():
zip_safe=False,
classifiers=classifiers,
install_requires=get_install_requires(),
python_requires='>=3.6, <4',
python_requires='>=3.7, <4',
)

0 comments on commit b5c803d

Please sign in to comment.