Skip to content

Commit

Permalink
Merge pull request genomic-medicine-sweden#70 from genomic-medicine-s…
Browse files Browse the repository at this point in the history
…weden/output_structure

feat: adapt results output structure to better match current GMS560 p…
  • Loading branch information
jonca79 authored Mar 7, 2024
2 parents 437b6a0 + 7569afd commit 5cc8852
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 24 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ jobs:
name: integration small data set singularity
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -34,6 +29,11 @@ jobs:
- name: Set strict channels
run: |
conda config --set channel_priority strict
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install requirements.txt
run: |
pip install -r requirements.txt
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Add conda to system path
run: |
echo $CONDA/bin >> $GITHUB_PATH
- name: Install requirements.txt
run: |
pip install -r requirements.txt
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/pycodestyl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,6 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Add conda to system path
run: |
echo $CONDA/bin >> $GITHUB_PATH
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-variant: Mambaforge
miniforge-version: latest
activate-environment: my-env
use-mamba: true
- name: Install requirements.txt
run: |
pip install -r requirements.txt
Expand Down
8 changes: 4 additions & 4 deletions config/output_files.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
files:
- name: "_copy_detected_variants"
input: "pgx/detected_variants/{sample}_{type}.annotated.csv"
output: "results/dna/additional_files/pgx/{sample}_{type}.detected_variants.csv"
output: "results/dna/pgx/additional_files/{sample}_{type}.detected_variants.csv"
types:
- T
- N

- name: "_copy_depth_of_baits"
input: "pgx/depth_of_coverage/depth_of_baits/{sample}_{type}.output.gdf"
output: "results/dna/additional_files/pgx/{sample}_{type}.depth_of_baits.gdf"
output: "results/dna/pgx/additional_files/{sample}_{type}.depth_of_baits.gdf"
types:
- T
- N

- name: "_copy_depth_at_missing"
input: "pgx/append_id_to_gdf/{sample}_{type}.depth_at_missing_annotated.gdf"
output: "results/dna/additional_files/pgx/{sample}_{type}.depth_at_missing_annotated.gdf"
output: "results/dna/pgx/additional_files/{sample}_{type}.depth_at_missing_annotated.gdf"
types:
- T
- N
Expand All @@ -39,4 +39,4 @@ files:
output: "results/dna/pgx/{sample}_{type}.pgx_report.html"
types:
- T
- N
- N
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
hydra-genetics==0.15.0
pandas>=1.3.1
snakemake==7.8.0
snakemake==7.18.0
singularity==3.0.0
jinja2==3.0.1
networkx
tabulate<0.9.0
pulp < 2.8
pulp<2.8
smart_open<7.0.0

0 comments on commit 5cc8852

Please sign in to comment.