Javier Tamames
Javier Tamames

Reputation: 11

Install older version of snakemake

I need to install version 4.7.0 of snakemake, but I cannot find it. Could you please tell me where can I get old versions of the software? I tried the bitbucket repository but I could not find any other than the latest version.

Upvotes: 1

Views: 1230

Answers (2)

Manavalan Gajapathy
Manavalan Gajapathy

Reputation: 4089

Did you try pip?

pip install snakemake==4.7.0

For source code download: https://bitbucket.org/snakemake/snakemake/downloads/?tab=tags

Upvotes: 0

JohnnyBD
JohnnyBD

Reputation: 161

It is available through conda:

$  conda search -c bioconda -f snakemake=4.7.0
Loading channels: \  conda search -c bioconda -f snakemake=4.7
# Name                  Version           Build  Channel
snakemake                 4.7.0          py35_0  bioconda
snakemake                 4.7.0          py36_0  bioconda

Upvotes: 1

Related Questions