Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: dev to master #113

Merged
merged 22 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ca947b1
fix: remove conda from picard.smk
elleira May 3, 2023
fcb0754
Merge pull request #101 from hydra-genetics/fix_conda
Smeds May 4, 2023
8a18038
feat: update snakemake version, allow range up to version 8
Smeds May 12, 2023
e4f605e
Merge pull request #105 from hydra-genetics/Smeds-patch-1
jonca79 May 15, 2023
dbc71e7
fix: add bai file to picard rules that needs it
jonca79 Jul 7, 2023
f4bc663
docs: added rtd for all rules up to picard
jonca79 Jul 7, 2023
d6a06c6
docs: update plugin version and added override value for multiqc input
Smeds Oct 5, 2023
70a1870
Merge pull request #107 from hydra-genetics/rtd
jonca79 Oct 5, 2023
c604d05
feat: add vertifybamid2
Oct 4, 2023
5045af4
fix: Update to make outputs temporary
MagdalenaZZ Oct 4, 2023
03ab7f7
fix: excluded verifybamid from integration testing
MagdalenaZZ Oct 6, 2023
d3780c4
docs: Updated rules.schema.yaml with additional details on inputs and…
MagdalenaZZ Oct 6, 2023
9eff247
Style: linted Snakefile and common.smk with snkfmt
MagdalenaZZ Oct 6, 2023
06beb78
Update softwares.md
MagdalenaZZ Oct 9, 2023
76aee6b
Update softwares.md
MagdalenaZZ Oct 9, 2023
07783cd
Update rules.schema.yaml
MagdalenaZZ Oct 9, 2023
75ad68f
docs: Update softwares.md
MagdalenaZZ Oct 9, 2023
7618a3f
Merge pull request #108 from hydra-genetics/verifybamid
MagdalenaZZ Oct 9, 2023
da66130
feat: update samtools.smk and remove design_bed as a default extra (#…
padraicc Dec 5, 2023
c882232
fix: Update requirements.txt (#114)
padraicc Feb 12, 2024
3470422
docs: update rule graph (#116)
padraicc Mar 28, 2024
47ebeac
docs: add files to build rtd and test the build (#117)
padraicc Apr 17, 2024
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
34 changes: 34 additions & 0 deletions .github/workflows/test-build-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

name: build mkdocs

on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop
- master
workflow_dispatch:

jobs:
build-mkdocs:
name: build mkdocs
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install requirements.txt
run: |
pip install -r requirements.txt
- name: Install requirements.test.txt
run: |
pip install -r requirements.test.txt
pip install -r docs/requirements.txt
- name: build mkdocs
run: |
mkdocs build
20 changes: 20 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

mkdocs:
configuration: mkdocs.yml

# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
8 changes: 8 additions & 0 deletions .tests/integration/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ multiqc:
included_unit_types: ['N', 'T']
qc_files:
- "qc/fastqc/{sample}_{type}_{flowcell}_{lane}_{barcode}_{read}_fastqc.zip"
- "qc/peddy/peddy.sex_check.csv"
- "qc/peddy/peddy.ped_check.csv"
- "qc/picard_collect_alignment_summary_metrics/{sample}_{type}.alignment_summary_metrics.txt"
- "qc/picard_collect_duplication_metrics/{sample}_{type}.duplication_metrics.txt"
- "qc/picard_collect_gc_bias_metrics/{sample}_{type}.gc_bias.summary_metrics"
Expand Down Expand Up @@ -89,3 +91,9 @@ rseqc_gene_body_coverage:
rseqc_inner_distance:
bed: "reference/gene_model.bed"
container: "docker://hydragenetics/rseqc:4.0.0"

verifybamid2:
container: "docker://hydragenetics/verifybamid2:2.0.1"
svd_mu: "verifybamid2/1000g.phase3.10k.b38.exome.vcf.gz.dat.mu"


9,892 changes: 9,892 additions & 0 deletions .tests/integration/verifybamid2/1000g.phase3.10k.b38.exome.vcf.gz.dat.UD

Large diffs are not rendered by default.

2,504 changes: 2,504 additions & 0 deletions .tests/integration/verifybamid2/1000g.phase3.10k.b38.exome.vcf.gz.dat.V

Large diffs are not rendered by default.

Loading
Loading