Skip to content

Commit

Permalink
Merge pull request #43 from BackofenLab/input
Browse files Browse the repository at this point in the history
added 3 to python and setup.py
  • Loading branch information
teresa-m authored Oct 28, 2022
2 parents 15857af + b81ee55 commit c79f382
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
6 changes: 3 additions & 3 deletions bin/cherri
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import pandas as pd
import argparse
import os
Expand All @@ -8,11 +8,11 @@ import sys
import rrieval.lib as rl
from scipy.sparse import csr_matrix, vstack, hstack, load_npz, save_npz
from ubergauss.tools import loadfile, dumpfile
import subprocess
# import subprocess



__version__ = "0.3"
__version__ = "0.4"

"""
Expand Down
2 changes: 1 addition & 1 deletion bin/find_occupied_regions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import pandas as pd
from collections import defaultdict
import argparse
Expand Down
2 changes: 1 addition & 1 deletion bin/find_trusted_RRI.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import pandas as pd
import math
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion bin/generate_pos_neg_with_context.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import pandas as pd
import math
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion bin/get_features.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import pandas as pd
import math
import matplotlib as mpl
Expand Down
2 changes: 1 addition & 1 deletion rrieval/lib.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

#general imports

Expand Down
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
#!/usr/bin/env python3

from setuptools import setup, find_packages

Expand All @@ -11,21 +11,19 @@

setup(
name='cherri',
version='0.3',
version='0.4',
description='Cherri is a tool for classification of RNA-RNA interactions.',
long_description=readme,
long_description_content_type='text/markdown',
author='Teresa Mueller',
author_email='[email protected]',
url='https://github.com/teresa-m/Cherri',
url='https://github.com/BackofenLab/Cherri',
license=license,
scripts=['bin/cherri', 'bin/find_occupied_regions.py',
'bin/find_trusted_RRI.py', 'bin/generate_pos_neg_with_context.py',
'bin/get_features.py'],
packages=find_packages(exclude=('tests', 'docs')),
package_data={'': ['IntaRNA_param/*']},
package_data={'rrieval': ['IntaRNA_param/*']},
include_package_data=True,
#packages=['rrieval'],
# package_data={'rrieval': ['lib.py','IntaRNA_param/IntaRNA_param.txt']},
zip_safe=False
zip_safe=False,
)

0 comments on commit c79f382

Please sign in to comment.