Skip to content
Snippets Groups Projects
Commit a07e1173 authored by Alex Kanitz's avatar Alex Kanitz
Browse files

docs: rename project/workflow

parent ef2c6624
No related branches found
No related tags found
2 merge requests!76Bump version to v0.2.0,!69docs: rename project/workflow
Pipeline #11002 passed
......@@ -4,7 +4,7 @@ before_script:
- apt update && apt install -y gcc
- conda init bash && source ~/.bashrc && echo $CONDA_DEFAULT_ENV
- conda env create -f install/environment.root.yml
- conda activate rhea && echo $CONDA_DEFAULT_ENV
- conda activate zarp && echo $CONDA_DEFAULT_ENV
- conda env update -f install/environment.dev.yml
test:
......
# Rhea pipeline
# ZARP pipeline
[Snakemake][snakemake] workflow for general purpose RNA-Seq library annotation
developed by the [Zavolan lab][zavolan-lab].
......@@ -32,8 +32,8 @@ Traverse to the desired path on your file system, then clone the repository and
move into it with:
```bash
git clone ssh://git@git.scicore.unibas.ch:2222/zavolan_group/pipelines/rhea.git
cd rhea
git clone ssh://git@git.scicore.unibas.ch:2222/zavolan_group/pipelines/zarp.git
cd zarp
```
### Installing Conda
......@@ -90,7 +90,7 @@ conda env create -f install/environment.root.yml
Activate the Conda environment with:
```bash
conda activate rhea
conda activate zarp
```
### Installing non-essential dependencies
......
......@@ -1117,7 +1117,7 @@ rule prepare_multiqc_config:
workflow.basedir,
"workflow",
"scripts",
"rhea_multiqc_config.py")
"zarp_multiqc_config.py")
output:
multiqc_config = os.path.join(
......
name: rhea
name: zarp
channels:
- bioconda
- conda-forge
......
name: rhea
name: zarp
channels:
- conda-forge
- defaults
......
name: rhea
name: zarp
channels:
- defaults
dependencies:
......
# Rhea: workflow documentation
# ZARP: workflow documentation
This document describes the individual steps of the workflow. For instructions
on installation and usage please see [here](README.md).
......
#!/usr/bin/env python3
"""Create input table and config for Rhea."""
"""Create input table and config for ZARP."""
import argparse
from functools import partial
......@@ -79,14 +79,14 @@ def parse_cli_args() -> argparse.Namespace:
"--output-table",
type=argparse.FileType('w'),
default="samples.tsv",
help="output sample table for use in Rhea (default: %(default)s)",
help="output sample table for use in ZARP (default: %(default)s)",
metavar="FILE",
)
io.add_argument(
"--config-file",
type=argparse.FileType('w'),
default="config.yaml",
help="output Snakemake configuration file for use in Rhea (default: "
help="output Snakemake configuration file for use in ZARP (default: "
"%(default)s)",
metavar="FILE",
)
......@@ -94,7 +94,7 @@ def parse_cli_args() -> argparse.Namespace:
"--output-dir",
type=str,
default=os.getcwd(),
help="directory to which Rhea results and logs are to be written "
help="directory to which ZARP results and logs are to be written "
"(default: %(default)s)",
metavar="DIR",
)
......@@ -453,7 +453,7 @@ def expand_path(
def main(args):
"""
Create input table and config for Rhea.
Create input table and config for ZARP.
"""
setup_logging(
logger=logger,
......
......@@ -3,7 +3,7 @@
# -----------------------------------------------------------------------------
# Author : Maria Katsantoni, Maciek Bak
# Company: Mihaela Zavolan, Biozentrum, Basel
# This script is part of the Zavolan lab Rhea pipeline.
# This script is part of the Zavolan lab ZARP pipeline.
# In this script the config file used by multiqc
# (https://multiqc.info) is created.
# -----------------------------------------------------------------------------
......@@ -62,9 +62,9 @@ def main():
parser.print_help()
sys.exit(1)
title = "Rhea"
title = "ZARP"
subtitle = "RNA-Seq processing pipeline developed by Zavolan Lab"
logo_title = 'Rhea'
logo_title = "ZARP"
project_type = "Snakemake workflow"
analysis_type = "RNA-seq"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment