Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.snakemake/
example_data/output/
example_data/reference/STARIndex/
example_data/reference/SalmonIndex/
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM continuumio/miniconda3

WORKDIR /app

# Prepare environment
RUN conda config --add channels bioconda
RUN conda config --add channels conda-forge
RUN conda install -y -c conda-forge mamba=0.23.3
RUN mamba install -y -c bioconda snakemake=6.10.0
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ git clone https://github.com/csoneson/ARMOR.git
cd ARMOR && snakemake --use-conda
```

Or using docker:
```
docker-compose up
```

To use the ARMOR workflow on your own data, follow the steps outlined in the [wiki](https://github.com/csoneson/ARMOR/wiki).

## Workflow graph
Expand Down
7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: "3.9"
services:
armor:
build: .
volumes:
- ./:/app
command: snakemake --use-conda --cores all