Skip to content

Commit 8d0b24e

Browse files
committed
dependency package version issues
1 parent 492c5e6 commit 8d0b24e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

run_CEFCON.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ input_exp="./example_data/exp_hESC_hvg1000.csv"
44
input_prior="./prior_data/network_human.zip"
55
input_genesDE="./example_data/DE_hESC_hvg1000.csv"
66

7-
python CEFCON.py --input_expData $input_exp --input_priorNet $input_prior --input_genesDE $input_genesDE --cuda 3 --repeats 3 --edge_threshold_param 8 --out_dir ./out_test
7+
cefcon --input_expData $input_exp --input_priorNet $input_prior --input_genesDE $input_genesDE --cuda 3 --repeats 3 --edge_threshold_param 8 --out_dir ./out_test

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def readme():
2020
entry_points={
2121
"console_scripts": ['cefcon = cefcon.CEFCON:main']
2222
},
23-
python_requires="==3.10", # >=3.10 is recommended
23+
python_requires=">=3.8,<3.11", # >=3.10 is recommended
2424
install_requires=[
2525
'numpy',
2626
'scipy',
@@ -39,7 +39,7 @@ def readme():
3939
'seaborn',
4040
'biomart',
4141
#'r',
42-
'rpy2',
42+
'rpy2<3.5.13',
4343
],
4444
# package_dir={'cefcon':'cefcon'},
4545
license='MIT',

0 commit comments

Comments
 (0)