|
| 1 | +--- |
| 2 | +hide: |
| 3 | + - navigation |
| 4 | +--- |
1 | 5 | # Quick Start
|
2 | 6 |
|
3 | 7 | Viralgenie needs two things:
|
4 | 8 |
|
5 | 9 | 1. [Nextflow](https://www.nextflow.io/)
|
6 |
| - 2. [Docker](https://www.docker.com/resources/what-container/) or [Singularity](https://docs.sylabs.io/guides/latest/user-guide/introduction.html) or [Conda](https://docs.conda.io/en/latest/) |
| 10 | + 2. [Docker](https://www.docker.com/resources/what-container/), [Singularity](https://docs.sylabs.io/guides/latest/user-guide/introduction.html), or [Conda](https://docs.conda.io/en/latest/) |
7 | 11 |
|
8 | 12 | ```bash
|
9 | 13 | # Install nextflow with conda
|
10 | 14 | conda install nextflow
|
11 | 15 | ```
|
12 | 16 |
|
13 |
| -Run the pipeline with a small test dataset with docker containers: |
| 17 | +Run the pipeline with a small test dataset using Docker containers: |
14 | 18 | ```bash
|
15 | 19 | nextflow run Joon-Klaps/viralgenie \
|
16 | 20 | -profile test,docker
|
@@ -46,36 +50,36 @@ An input file contains the paths to the fastq files and the sample names. The in
|
46 | 50 | sample3,AEG588A3_S3_L002_R1_001.fastq.gz,AEG588A3_S3_L002_R2_001.fastq.gz
|
47 | 51 | ```
|
48 | 52 |
|
49 |
| - |
50 | 53 | === "YAML"
|
51 | 54 |
|
52 | 55 | ```yaml title="input-samplesheet.yaml"
|
53 | 56 | - sample: sample1
|
54 |
| - fastq1: AEG588A1_S1_L002_R1_001.fastq.gz |
55 |
| - fastq2: AEG588A1_S1_L002_R2_001.fastq.gz |
| 57 | + fastq1: AEG588A1_S1_L002_R1_001.fastq.gz |
| 58 | + fastq2: AEG588A1_S1_L002_R2_001.fastq.gz |
56 | 59 | - sample: sample2
|
57 |
| - fastq1: AEG588A5_S5_L003_R1_001.fastq.gz |
| 60 | + fastq1: AEG588A5_S5_L003_R1_001.fastq.gz |
58 | 61 | - sample: sample3
|
59 |
| - fastq1: AEG588A3_S3_L002_R1_001.fastq.gz |
60 |
| - fastq2: AEG588A3_S3_L002_R2_001.fastq.gz |
| 62 | + fastq1: AEG588A3_S3_L002_R1_001.fastq.gz |
| 63 | + fastq2: AEG588A3_S3_L002_R2_001.fastq.gz |
61 | 64 | ```
|
62 | 65 |
|
63 | 66 | === "JSON"
|
| 67 | + |
64 | 68 | ```json title="samplesheet.json"
|
65 | 69 | [
|
66 | 70 | {
|
67 | 71 | "sample": "sample1",
|
68 | 72 | "fastq1": "AEG588A1_S1_L002_R1_001.fastq.gz",
|
69 |
| - "fastq2": "AEG588A1_S1_L002_R2_001.fastq.gz", |
| 73 | + "fastq2": "AEG588A1_S1_L002_R2_001.fastq.gz" |
70 | 74 | },
|
71 | 75 | {
|
72 | 76 | "sample": "sample2",
|
73 |
| - "fastq1": "AEG588A5_S5_L003_R1_001.fastq.gz", |
| 77 | + "fastq1": "AEG588A5_S5_L003_R1_001.fastq.gz" |
74 | 78 | },
|
75 | 79 | {
|
76 | 80 | "sample": "sample3",
|
77 | 81 | "fastq1": "AEG588A3_S3_L002_R1_001.fastq.gz",
|
78 |
| - "fastq2": "AEG588A3_S3_L002_R2_001.fastq.gz", |
| 82 | + "fastq2": "AEG588A3_S3_L002_R2_001.fastq.gz" |
79 | 83 | }
|
80 | 84 | ]
|
81 | 85 | ```
|
|
0 commit comments