-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ubuntu
committed
Oct 28, 2022
1 parent
15857af
commit b81ee55
Showing
7 changed files
with
13 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
#!/usr/bin/env python3 | ||
|
||
#general imports | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
@@ -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, | ||
) |