https://github.com/solida-core/musta
MUSTA: a modular pipeline to detect, classify and interpret mutations in cancer
https://github.com/solida-core/musta
Last synced: 9 months ago
JSON representation
MUSTA: a modular pipeline to detect, classify and interpret mutations in cancer
- Host: GitHub
- URL: https://github.com/solida-core/musta
- Owner: solida-core
- License: mit
- Created: 2021-12-21T16:13:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-05T16:03:34.000Z (almost 2 years ago)
- Last Synced: 2025-05-18T12:37:03.067Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 5.21 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Snakemake workflow: Musta
[](https://snakemake.bitbucket.io)
[](https://travis-ci.org/snakemake-workflows/musta)
This workflow performs variant calling and annotation for tumoral and matched germinal samples.
Musta is part of the Snakemake-based pipelines collection [solida-core](https://github.com/solida-core) developed and manteined at [CRS4](https://www.crs4.it).
## Authors
* Matteo Massidda (@massiddaMT)
* Rossano Atzeni (@ratzeni)
## Usage
The usage of this workflow is described in the [Snakemake Workflow Catalog](https://snakemake.github.io/snakemake-workflow-catalog?usage=solida-core/musta).
If you use this workflow in a paper, don't forget to give credits to the authors by citing the URL of this (original) repository and its DOI (see above).
## INSTRUCTIONS
Create a virtual environment with the command:
```commandline
mamba create -c bioconda -c conda-forge --name snakemake snakemake=6.15 snakedeploy
```
and activate it:
```commandline
conda activate snakemake
```
We get some public data to test the pipeline. You can directly clone in this folder from github, just type:
```commandline
git clone https://github.com/solida-core/test-data-somatic.git
```
You can then perform the pipeline deploy defining a directory `my_dest_dir` for analysis output and a pipeline tag for a specific version:
```bash
snakedeploy deploy-workflow https://github.com/solida-core/musta
my_desd_dir
--tag v1.1
```
To run the pipeline, go inside the deployed pipeline folder and use the command:
```bash
snakemake --use-conda -p --cores all
```
You can generate analysis report with the command:
```bash
snakemake --report report.zip --cores all
```