Skip to content

Commit

Permalink
fix version on setup
Browse files Browse the repository at this point in the history
  • Loading branch information
marifergun committed Mar 25, 2024
1 parent cdbd38c commit f78570d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ RUN mkdir /app
COPY . /app/.

WORKDIR /app
RUN mamba run --no-capture-output -n cosap pip install celery redis docker
RUN mamba run --no-capture-output -n cosap pip install -e .
RUN mamba run --no-capture-output -n cosap pip install .

# Set environment variables
ENV COSAP /app
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ install:
fi;

mamba create --name cosap -c conda-forge -c bioconda --yes --file requirements.txt
mamba run --no-capture-output -n cosap pip install . docker celery redis

# Set environment variables in conda environment
conda env config vars set COSAP=$(PWD) -n cosap
Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ pyranges
upsetplot
seaborn
scikit-learn
matplotlib-venn
matplotlib-venn
celery
redis-py
docker-py
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="cosap",
version="0.0.2",
version="0.1.0",
description="COSAP python library for NGS data analysis",
packages=find_packages(),
package_data={"cosap": ["snakemake_workflows/*"]},
Expand Down

0 comments on commit f78570d

Please sign in to comment.