Forrest logo
back to the nf-core tool

nf-core:tldr:3bfed

nf-core: Bump software versions in pipeline recipe.
$ nf-core bump-version ${path-to-directory} ${new_version}
try on your machine

The provided command nf-core bump-version ${path-to-directory} ${new_version} is used in the context of the Nextflow community pipeline project, specifically the nf-core pipeline. Let's break down the command:

  • nf-core: It is a framework for creating and maintaining Nextflow-based bioinformatics pipelines. The command is executed within the nf-core project.
  • bump-version: It is a sub-command of nf-core used to update the version number of a pipeline. The bump-version command allows incrementing the pipeline version and updating relevant files to reflect the new version.
  • ${path-to-directory}: This is a placeholder representation of the path to the directory containing the pipeline that needs to be updated. The user should replace ${path-to-directory} with the actual path to the respective pipeline directory.
  • ${new_version}: This is another placeholder representing the new version number that should be assigned to the pipeline. The user should replace ${new_version} with the desired new version number, e.g., 1.2.0.

When executing the command, the given nf-core pipeline's version will be changed to the specified ${new_version} in different files and configurations associated with the pipeline located at ${path-to-directory}.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the nf-core tool