Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conda based install #65

Open
nhartwic opened this issue Sep 27, 2019 · 2 comments
Open

Conda based install #65

nhartwic opened this issue Sep 27, 2019 · 2 comments

Comments

@nhartwic
Copy link

For those who don't have admin privileges and avoid apt-get, you should be able to use conda to manage the install of the biocode dependencies. You can use the following commands...

# create a new conda environment named 'misc3' with needed dependencies and install biocode
conda create -n misc3 -c conda-forge python==3.6.8 pip zlib libblas liblapack libxml2
conda activate misc3
pip install biocode

I haven't fully tested my install but have used several of the gff scripts and it all seems to work fine.

Assuming this installation method actually works (I don't see why it wouldn't) it may be worth adding these commands to the biocode README

@jorvis
Copy link
Owner

jorvis commented Sep 28, 2019

I don't use conda but will happily accept a pull request with this added to the README if you're interested in doing it. My only suggestions to change would be the 'misc3' to something like 'biocode' (why not?) and accepting any Python 3.4 or higher.

@mikemc
Copy link

mikemc commented Feb 19, 2020

I just installed Biocode via this method and have one minor suggestion if these instructions are added to the README. I came here looking for a way to convert Genbank files to GFF3 files, and in addition to the above I had to install Biopython to the conda environment before I could use the gff/convert_genbank_to_gff3.py script. If Biopython is a common requirement for Biocode scripts then it might be worth adding it to the conda create call or mentioning it as an optional dependency.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants