Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Sep 6, 2023
1 parent c835111 commit 0e0e0d3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
14 changes: 7 additions & 7 deletions artic/1.2.4-1.9.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ WORKDIR /test

# using on "real" data (sample files were not sequenced with version 5.3.2 primers)
RUN wget -q ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR224/050/SRR22452250/SRR22452250_1.fastq.gz && \
artic guppyplex --min-length 400 --max-length 700 --directory . --prefix SRR22452250_1.fastq.gz --output SRR22452250_1_filtered.fastq.gz && \
mkdir -p dir/name/v5 && \
wget https://raw.githubusercontent.com/artic-network/primer-schemes/master/nCoV-2019/V5.3.2/SARS-CoV-2.primer.bed -O dir/name/v5/name.primer.bed && \
wget https://raw.githubusercontent.com/artic-network/primer-schemes/master/nCoV-2019/V5.3.2/SARS-CoV-2.reference.fasta -O dir/name/v5/name.reference.fasta && \
wget https://raw.githubusercontent.com/artic-network/primer-schemes/master/nCoV-2019/V5.3.2/SARS-CoV-2.scheme.bed -O dir/name/v5/name.scheme.bed && \
samtools faidx dir/name/v5/name.scheme.bed && \
artic minion --normalise 200 --skip-nanopolish --medaka --medaka-model r941_min_high_g360 --threads 4 --read-file SRR22452250_1_filtered.fastq.gz --scheme-directory dir --scheme-version 5 name final && \
artic guppyplex --min-length 400 --max-length 700 --directory . --prefix SRR22452250_1.fastq.gz --output SRR22452250_1_filtered.fastq.gz && \
mkdir -p dir/name/V5 && \
wget -q https://raw.githubusercontent.com/artic-network/primer-schemes/master/nCoV-2019/V5.3.2/SARS-CoV-2.primer.bed -O dir/name/V5/name.primer.bed && \
wget -q https://raw.githubusercontent.com/artic-network/primer-schemes/master/nCoV-2019/V5.3.2/SARS-CoV-2.reference.fasta -O dir/name/V5/name.reference.fasta && \
wget -q https://raw.githubusercontent.com/artic-network/primer-schemes/master/nCoV-2019/V5.3.2/SARS-CoV-2.scheme.bed -O dir/name/V5/name.scheme.bed && \
samtools faidx dir/name/V5/name.reference.fasta && \
artic minion --normalise 200 --skip-nanopolish --medaka --medaka-model r941_min_high_g360 --threads 4 --read-file SRR22452250_1_filtered.fastq.gz --scheme-directory ./dir --scheme-version 5 name final && \
ls final*

18 changes: 14 additions & 4 deletions artic/1.2.4-1.9.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Main tool : [artic](https://github.com/artic-network/fieldbioinformatics)

Additional tools:

- medaka=1.9.1

Full documentation: [https://github.com/artic-network/fieldbioinformatics](https://github.com/artic-network/fieldbioinformatics)
Expand All @@ -12,7 +13,7 @@ And additional documentation: [https://artic.readthedocs.io/en/latest/](https://

> A bioinformatics pipeline for working with virus sequencing data sequenced with nanopore.
WARNING : This container does not contain nanopolish, nor does it contain the primer schemes found at https://github.com/artic-network/primer-schemes. Those will have to be downloaded and mounted separately.
WARNING : This container does not contain the primer schemes found at [https://github.com/artic-network/primer-schemes](https://github.com/artic-network/primer-schemes). Those will have to be downloaded and mounted separately.

## Example Usage with the artic primers

Expand All @@ -32,7 +33,9 @@ docker run -v $(pwd):/data staphb/artic:latest artic minion --normalise 200 --sk
# the result files will all start with test*
```

In general, any primer scheme can be used as long as it meeds artic's requirments. This is the recommended directory structure with corresponding files:
In general, any primer scheme can be used as long as it meeds [artic's requirments](https://github.com/artic-network/primer-schemes).

This is the recommended directory structure with corresponding files:

```bash
${diretory}/${name}/V${version}/${name}.primer.bed
Expand All @@ -41,7 +44,14 @@ ${diretory}/${name}/V${version}/${name}.reference.fasta
${diretory}/${name}/V${version}/${name}.reference.fasta.fai
```

The command to use this primer scheme would be
The command to use this primer scheme would be

```bash
artic minion --normalise 200 --skip-nanopolish --medaka --medaka-model r941_min_high_g360 --threads 4 --read-file input.fastq.gz --scheme-directory ${directory} --scheme-version ${version} ${name} outputprefix
```
```

Different primer schemes can be validated via artic-tools (already in PATH) via

```bash
artic-tools validate_scheme ${basename}.primer.bed --outputInserts ${basename}.insert.bed
```

0 comments on commit 0e0e0d3

Please sign in to comment.