Skip to content

Commit

Permalink
update deps and version
Browse files Browse the repository at this point in the history
  • Loading branch information
alienzj committed Jun 2, 2022
1 parent e09040b commit 7799e7e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
4 changes: 3 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ dependencies:
- pandas
- numpy
- ruamel.yaml
- snakemake >=6.10
- snakemake >=7.0
- openpyxl
- natsort
- biopython >=1.73
- seaborn
- matplotlib
2 changes: 1 addition & 1 deletion metapi/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3

__version__ = '2.1.1'
__version__ = '2.1.2'
__author__ = "Jie Zhu, Fangming Yang"
3 changes: 3 additions & 0 deletions metapi/snakefiles/gene_wf.smk
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import sys
import metapi
import pandas as pd
from snakemake.utils import min_version

min_version(7.0)

shell.executable("bash")

Expand Down
3 changes: 3 additions & 0 deletions metapi/snakefiles/mag_wf.smk
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import sys
import metapi
import pandas as pd
from pprint import pprint
from snakemake.utils import min_version

min_version(7.0)

shell.executable("bash")

Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
numpy
pandas
openpyxl
snakemake
snakemake >=7.0
ruamel.yaml
natsort
biopython >=1.73
seaborn
matplotlib

0 comments on commit 7799e7e

Please sign in to comment.