Fix README: use correct conda command for environment.yml #32
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Title: Fix README: use correct
condacommand forenvironment.ymlDescription: The current build instructions in the README suggest:
This fails with the provided
environment.ymlbecause:conda create --fileexpects a spec file, a plain text list of packages and versions, not a YAML environment definition.name:,channels:, anddependencies:keys.Proposed change: Use:
This correctly parses the YAML, uses the embedded environment name (
fastMSA), and respects the channels already defined in the file (pytorch,bioconda,conda-forge,defaults).References: