-
Notifications
You must be signed in to change notification settings - Fork 117
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
Add hello-config module #371
Conversation
✅ Deploy Preview for nextflow-training ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
docker.enabled = false | ||
conda.enabled = true |
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.
you don't really need to disable docker to run conda
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.
I thought it might be nice to be explicit? but I agree about in the profiles.
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.
If you do it, then explain why you do it
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.
Done with 6d1a839
profiles { | ||
'docker' { | ||
docker.enabled = true | ||
conda.enabled = false |
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.
I think the enabled = false are overkill.
We have that in nf-core, but we might be doing too much
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.
I've simplified it to not include those bits!
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.
Really like the flow on this module. Great addition!
|
||
### 4.3 Seqera Platform | ||
|
||
Setting up and configuring Nextflow for different executors can be complex and time-consuming. Seqera Platform simplifies this process by providing a user-friendly interface to manage and run Nextflow pipelines on various compute platforms. With Seqera Platform, you can easily configure and launch your pipelines on local machines, HPC clusters, cloud environments, and Kubernetes clusters. The platform abstracts the underlying infrastructure, allowing you to focus on your analysis and research without worrying about the technical details of setting up and managing the execution environment. |
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.
Setting up and configuring Nextflow for different executors can be complex and time-consuming. Seqera Platform simplifies this process by providing a user-friendly interface to manage and run Nextflow pipelines on various compute platforms. With Seqera Platform, you can easily configure and launch your pipelines on local machines, HPC clusters, cloud environments, and Kubernetes clusters. The platform abstracts the underlying infrastructure, allowing you to focus on your analysis and research without worrying about the technical details of setting up and managing the execution environment. | |
Setting up and configuring Nextflow for different executors can be complex and time-consuming. | |
Seqera Platform simplifies this process by providing a user-friendly interface for managing and running Nextflow pipelines on various compute platforms. | |
With Seqera Platform, you can easily configure and launch your pipelines on local machines, HPC clusters, cloud environments, and Kubernetes clusters. | |
The platform abstracts the underlying infrastructure, allowing you to focus on your analysis and research without worrying about the technical details of setting up and managing the execution environment. |
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.
I've removed the Seqera Platform bit so this is no longer relevant.
Looks great overall, some thoughts for future improvements TBC but this seems great as a first pass to try on a cohort of learners |
Covers setting up configuration of a Nextflow pipeline including software packaging (conda, docker), process directives (cpus, memory), execution (local, slurm) and profiles.
Resolves #370