Skip to content

Commit

Permalink
fix #19
Browse files Browse the repository at this point in the history
  • Loading branch information
tavareshugo committed Dec 8, 2023
1 parent 6f0abd1 commit 8ba6eac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions materials/07-bacqc.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ Your first task is to run the `bacQC` pipeline on your data. In the folder `scr
nextflow run avantonder/bacQC \
-r main \
-profile singularity \
--max_memory '16.GB' --max_cpus 8 \
--input samplesheet.csv \
--outdir results/bacqc \
--kraken2db databases/minikraken2_v1_8GB \
Expand Down
6 changes: 4 additions & 2 deletions materials/32-command_line_amr.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ mamba activate nextflow
mkdir results/funcscan

# run the pipeline
nextflow run nf-core/funcscan -profile singularity \
nextflow run nf-core/funcscan \
-profile singularity \
--max_memory 16.GB --max_cpus 8 \
--input SAMPLESHEET \
--outdir OUTPUT_DIRECTORY \
Expand Down Expand Up @@ -109,7 +110,8 @@ The fixed script is:
mkdir results/funcscan

# run the pipeline
nextflow run nf-core/funcscan -profile singularity \
nextflow run nf-core/funcscan \
-profile singularity \
--max_memory 16.GB --max_cpus 8 \
--input samplesheet_funcscan.csv \
--outdir results/funcscan \
Expand Down

0 comments on commit 8ba6eac

Please sign in to comment.