COSAP Docs
Go to PortalGo to Github
  • COSAP - Comparative Sequencing Analysis Platform
  • Fundamentals
    • 🛠️Getting Set Up
      • 🐳COSAP via Docker
    • ❔Using COSAP
      • ➕Creating Pipelines with Builders
      • 🚀Running Pipelines
      • ⛓️Predefined Workflows
    • 🌐Using the Web App
    • 🏗️Deploying COSAP
Powered by GitBook
On this page
  • Installing Docker
  • Instructions
  1. Fundamentals
  2. Getting Set Up

COSAP via Docker

PreviousGetting Set UpNextUsing COSAP

Last updated 10 months ago

We recommend using the containerized version of COSAP as it comes with all required packages installed.

Installing Docker

If you do not have Docker Engine installed, you can follow the instructions at

Instructions

Pull the Docker image:

docker pull itubioinformatics/cosap

You can run the COSAP Docker image with the docker run command:

docker run -it \
-v /<your_cosap_data_path>/:/cosap_data \
-v /<your_workdir>/:/workdir \
-v /var/run/docker.sock:/var/run/docker.sock \
itubioinformatics/cosap \
python <your_cosap_script.py>

Volumes

Volume
Description

/cosap_data

Mount hg38 resources (COSAP_LIBRARY_PATH) to this path.

/workdir

Your working directory.

🛠️
🐳
https://docs.docker.com/engine/install/