You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/quickstart.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ Arriba has only a single prerequisite: [STAR](https://github.com/alexdobin/STAR)
6
6
Compile the latest stable version of Arriba or use the precompiled binaries in the download file. **Note: You should not use `git clone` to download Arriba, because the git repository does not include the blacklist! Instead, download the latest tarball from the [releases page](https://github.com/suhrig/arriba/releases/) as shown here:**
cd arriba_v2.2.0 && make # or use precompiled binaries
12
12
```
13
13
14
14
Arriba requires an assembly in FastA format, gene annotation in GTF format, and a STAR index built from the two. You can use your preferred assembly and annotation, as long as their coordinates are compatible with hg19/hs37d5/GRCh37 or hg38/GRCh38 or mm10/GRCm38 or mm39/GRCm39. If you use another assembly, then the coordinates in the blacklist will not match and the predictions will contain many false positives. GENCODE annotation is recommended over RefSeq due to more comprehensive annotation of immunoglobulin/T-cell receptor loci and splice sites, which improves sensitivity. If you do not already have the files and a STAR index, you can use the script `download_references.sh`. It downloads the files to the current working directory and builds a STAR index. Run the script without arguments to see a list of available files. Choose a file with the keyword `viral` if Arriba is supposed to detect viral integration sites. Note that this step requires ~45 GB of RAM and 8 cores (can be adjusted by setting the environment variable `THREADS`).
@@ -22,7 +22,7 @@ The download file contains a script `run_arriba.sh`, which demonstrates the usag
22
22
Run the demo script with 8 threads. In case of single-end data, the second FastQ file is omitted.
@@ -33,7 +33,7 @@ Install [Docker](https://www.docker.com/) according to the developers' instructi
33
33
Run the script `download_references.sh` inside the Docker container. It downloads the assembly and gene annotation to the directory `/path/to/references` and builds a STAR index. Run the script without arguments to see a list of available files. Choose a file with the keyword `viral` if Arriba is supposed to detect viral integration sites. Note that this step requires ~45 GB of RAM and 8 cores (can be adjusted by passing the parameter `--env=THREADS=...`).
34
34
35
35
```bash
36
-
docker run --rm -v /path/to/references:/references uhrigs/arriba:2.1.0 download_references.sh hs37d5viral+GENCODE19
36
+
docker run --rm -v /path/to/references:/references uhrigs/arriba:2.2.0 download_references.sh hs37d5viral+GENCODE19
37
37
```
38
38
39
39
Use the following Docker command to run Arriba from the container. Replace `/path/to/` with the path to the respective input file. Leave the paths after the colons unmodified - these are the paths inside the Docker container. In case of single-end data, the second FastQ file is omitted. Running Arriba requires ~45 GB of RAM and 8 cores (can be adjusted by passing the parameter `--env=THREADS=...`).
@@ -44,7 +44,7 @@ docker run --rm \
44
44
-v /path/to/references:/references:ro \
45
45
-v /path/to/read1.fastq.gz:/read1.fastq.gz:ro \
46
46
-v /path/to/read2.fastq.gz:/read2.fastq.gz:ro \
47
-
uhrigs/arriba:2.1.0 \
47
+
uhrigs/arriba:2.2.0 \
48
48
arriba.sh
49
49
```
50
50
@@ -57,7 +57,7 @@ The Docker container is compatible with Singularity. If desired, it can be conve
Use the following Singularity command to run Arriba from the container. Replace `/path/to/` with the path to the respective input file. Leave the paths after the colons unmodified - these are the paths inside the Singularity container. In case of single-end data, the second FastQ file is omitted. Running Arriba requires ~45 GB of RAM and 8 cores (can be adjusted by setting the environment variable `SINGULARITYENV_THREADS`).
@@ -68,7 +68,7 @@ singularity exec \
68
68
-B /path/to/references:/references:ro \
69
69
-B /path/to/read1.fastq.gz:/read1.fastq.gz:ro \
70
70
-B /path/to/read2.fastq.gz:/read2.fastq.gz:ro \
71
-
docker://uhrigs/arriba:2.1.0 \
71
+
docker://uhrigs/arriba:2.2.0 \
72
72
arriba.sh
73
73
```
74
74
@@ -80,7 +80,7 @@ Install [Miniconda](https://conda.io/) according to the developers' instructions
Run the script `download_references.sh`, which is installed inside the conda environment. It downloads the assembly and gene annotation to the current working directory and builds a STAR index. Run the script without arguments to see a list of available files. Choose a file with the keyword `viral` if Arriba is supposed to detect viral integration sites. Note that this step requires ~45 GB of RAM and 8 cores (can be adjusted by setting the environment variable `THREADS`). Replace `$CONDA_PREFIX` with the path to your conda environment.
@@ -93,7 +93,7 @@ To process FastQ files, run the script `run_arriba.sh`, which is installed insid
0 commit comments