-
Notifications
You must be signed in to change notification settings - Fork 1
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
Gh032 myriad config #41
Conversation
source ~/.bashrc | ||
module load python3 | ||
module load java/openjdk-11/11.0.1 | ||
pip install --upgrade pip wheel pytest nextflow |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here the pip nextflow module installs a command "nextflow" into the venv which, when run, automatically installs nextflow for you and replaces itself with actual nextflow, and also ensures nextflow in the path, therefore if you install this pip module you shouldn't need to also curl install nextflow as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes thanks, my oversight, I'll remove the pip install.
pytest | ||
cath-af-cli | ||
# RUN NEXTFLOW | ||
curl -s https://get.nextflow.io | bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see above comment: either use pip or curl install method for nextflow not both?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
closes #32