Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Then run the nfcore/ampliseq test workflow, which runs on a small test dataset.

Code Block
module load java
nextflow run nf-core/ampliseq -r 2.9.0 -profile test,singularity --outdir results

...

--input "data/samplesheet.tsv" The samplesheet and metadata files you created. Note in this case they must be in a ‘data’ subdirectory, but they can be anywhere you like, which you should then provide the full path for.

...

The workflow takes approximately 40 minutes to complete.

Running again, with metadata

In the previous run to save time we didn’t include the dummy metadata. You can run it in the background now with the metadata option included, to see how it runs.

Code Block
cd $HOME/meta_workshop/illumina
module load java
nextflow run nf-core/ampliseq -r 2.9.0 -profile singularity --single_end --ignore_failed_trimming --input "data/samplesheet.tsv" --metadata "data/metadata.tsv" --FW_primer "GGATTAGATACCCBRGTAGTC" --RV_primer "TCACGRCACGAGCTGACGAC" --outdir results_with_metadata

Additional parameters:

--metadata "data/metadata.tsv" Include the metadata file

--outdir results_with_metadata Output results to a new directory, called results_with_metadata

Interpreting ampliseq results

...