Closed didiowen closed 3 months ago
Hi, yes this can be easily fixed. I'll make a PR for it. Within nextflow, you can modify the used environment by specifying a custom configuration file:
process {
withName: 'FASTP' {
conda "bioconda::fastp=0.23.4"
}
}
And running it:
nextflow run nf-core/viralrecon -profile conda,test -c my-custom-config.config --outdir test
.
That said, viralrecon and all other nf-core pipelines use publicly available tools; not all tools will be compatible with ARM64 (through conda). Instead, running it with docker and specifying the arm
profile will be easier than searching for ARM-compatible versions and patching all of them.
nextflow run nf-core/viralrecon -profile docker,arm,test --outdir test
.
Description of the bug
Hi everyone,
I'm new to this workflow / pipeline and had just installed the latest version of nextflow. I was trying to run
nextflow run nf-core/viralrecon -profile conda
but I ran into the following error message:I've tried
conda install fastp=0.23.2
it seems that version 0.23.2 is no longer available (at least from my macOS arm64). Is there any way to work around this?Command used and terminal output
No response
Relevant files
No response
System information
No response