Skip to content

Commit

Permalink
adds debugging step for storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Manavalan Gajapathy committed Jun 15, 2023
1 parent d78a0a3 commit e754213
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/system_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,13 @@ jobs:

- name: Check conda solution
run: |
df -h
mamba env export
df -h
- name: Check snakemake exists in conda env
run: |
df -h
which snakemake
snakemake --version
Expand All @@ -58,14 +61,17 @@ jobs:
singularity-version: 3.8.3
- name: Check singularity is working
run: |
df -h
singularity --version
- name: Set up dependencies for QuaC
run: |
df -h
bash src/setup_dependency_datasets.sh
- name: Run QuaC system testing - WGS mode AND no prior QC data
run: |
df -h
PROJECT_CONFIG="project_2samples"
PRIOR_QC_STATUS="no_priorQC"
USE_SLURM=""
Expand All @@ -77,9 +83,11 @@ jobs:
--quac_watch_config "configs/quac_watch/wgs_quac_watch_config.yaml" \
--workflow_config "configs/workflow.yaml" \
$USE_SLURM
df -h
- name: Run QuaC system testing - Exome mode AND no prior QC data
run: |
df -h
PROJECT_CONFIG="project_2samples"
PRIOR_QC_STATUS="no_priorQC"
USE_SLURM=""
Expand All @@ -92,9 +100,11 @@ jobs:
--workflow_config "configs/workflow.yaml" \
--exome \
$USE_SLURM
df -h
- name: Run QuaC system testing - WGS mode AND uses prior QC data
run: |
df -h
PROJECT_CONFIG="project_2samples"
PRIOR_QC_STATUS="include_priorQC"
USE_SLURM=""
Expand All @@ -108,9 +118,11 @@ jobs:
--allow_sample_renaming \
--workflow_config "configs/workflow.yaml" \
$USE_SLURM
df -h
- name: Run QuaC system testing - Exome mode AND uses prior QC data
run: |
df -h
PROJECT_CONFIG="project_2samples"
PRIOR_QC_STATUS="include_priorQC"
USE_SLURM=""
Expand All @@ -124,4 +136,5 @@ jobs:
--include_prior_qc \
--allow_sample_renaming \
--workflow_config "configs/workflow.yaml" \
$USE_SLURM
$USE_SLURM
df -h

0 comments on commit e754213

Please sign in to comment.