Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
FerriolCalvet committed Jan 25, 2023
1 parent afe6f2a commit 511182d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This pipeline requires the compressed genome assembly and the taxid of the speci
```
export NXF_VER=22.04.4
nextflow run guigolab/geneidx -profile <docker/singularity>
--assembly <GENOME>.fa,gz
--genome <GENOME>.fa.gz
--taxid <TAXID>
--outdir <OUTPUT_directory>
```
Expand All @@ -31,7 +31,7 @@ git clone https://github.com/guigolab/geneidx.git
cd geneidx
export NXF_VER=22.04.4
nextflow run main.nf -profile <docker/singularity>
--assembly <GENOME>.fa.gz
--genome <GENOME>.fa.gz
--taxid <TAXID>
--outdir <OUTPUT_directory>
```
Expand Down
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ params.help = false

// this prints the input parameters
log.info """
GENEID+BLASTx - NextflowPipeline
GeneidX
=============================================
output : ${params.output}
genome : ${params.genome}
Expand All @@ -32,7 +32,7 @@ taxon : ${params.taxid}

// this prints the help in case you use --help parameter in the command line and it stops the pipeline
if (params.help) {
log.info 'This is the GeneidX test pipeline in Nextflow'
log.info 'This is the GeneidX pipeline in Nextflow'
log.info 'Please define the genome file and the taxid of the species.\n'
log.info 'To define additional parameters checkout the params.config file.\n'
log.info '\n'
Expand Down

0 comments on commit 511182d

Please sign in to comment.