Skip to content

Commit

Permalink
Fix setup issues
Browse files Browse the repository at this point in the history
- changed readme to use simpler pip installation from git repo
- fixed setup:
  - correct url
  - added scikit-learn as a dependency
  - fixed entry point
  • Loading branch information
troycomi committed Jan 28, 2020
1 parent 79f2dab commit ed59144
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ Peak caller for STARR-seq data
* sklearn (tested on 0.20.3)

## installation

With python 2.7 installed, preferably in a conda environment
```
git clone https://github.com/gersteinlab/starrpeaker.git
cd starrpeaker
sudo python setup.py install --record files.txt
pip install git+https://github.com/gersteinlab/starrpeaker
starrpeaker -h
```

Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version='0.1',
description='STARR-seq peak caller',
keywords = "STARR-seq, peaks, bioinformatics",
url='http://github.com/hoondy/starrpeaker',
url='http://github.com/gersteinlab/starrpeaker',
author='Donghoon Lee',
author_email='donghoon.lee@yale.edu',
license='GPL',
Expand All @@ -16,11 +16,12 @@
'statsmodels',
'pysam',
'pybedtools',
'pyBigWig'
'pyBigWig',
'scikit-learn'
],
entry_points = {
'console_scripts': [
'starrpeaker = starrpeaker.starrpeaker.starrpeaker:main'
'starrpeaker = starrpeaker.starrpeaker:main'
]
}
)
)

0 comments on commit ed59144

Please sign in to comment.