Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add pip dependencies for new version of forgi; increase version to v1…
….0.4
  • Loading branch information
heller committed Oct 26, 2017
1 parent 2ff9b62 commit 5ae85bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -4,7 +4,7 @@
long_description = """RNA-binding proteins (RBPs) play a vital role in the post-transcriptional control of RNAs. They are known to recognize RNA molecules by their nucleotide sequence as well as their three-dimensional structure. ssHMM is an RNA motif finder that combines a hidden Markov model (HMM) with Gibbs sampling to learn the joint sequence and structure binding preferences of RBPs from high-throughput RNA-binding experiments, such as CLIP-Seq. The model can be visualized as an intuitive graph illustrating the interplay between RNA sequence and structure."""

setup(name='sshmm',
version='1.0.3',
version='1.0.4',
description='A sequence-structure hidden Markov model for the analysis of RNA-binding protein data.',
long_description=long_description,
url='https://github.molgen.mpg.de/heller/ssHMM',
Expand All @@ -23,6 +23,6 @@
packages=['sshmm'],
package_data={'sshmm': ['img/*.png'],},
zip_safe=False,
install_requires=['numpy', 'graphviz', 'pygraphviz', 'weblogo', 'forgi'],
install_requires=['numpy', 'graphviz', 'pygraphviz', 'weblogo', 'future', 'logging_exceptions', 'forgi'],
scripts=['bin/preprocess_dataset', 'bin/train_seqstructhmm', 'bin/batch_seqstructhmm'],
ext_modules = [Extension("cEstimate", ["sshmm/cEstimate.c"])])

0 comments on commit 5ae85bd

Please sign in to comment.