Skip to content

Commit

Permalink
new result tree
Browse files Browse the repository at this point in the history
  • Loading branch information
tdayris committed Feb 21, 2024
1 parent e89d620 commit 18bb7e6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 24 deletions.
47 changes: 26 additions & 21 deletions workflow/report/results.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Alongside with the report, you may find directories called `reference`,
and `results`.


Results
=======
Results list
============


Reference
Expand Down Expand Up @@ -72,25 +72,30 @@ the following files are present:
::

results/
├── XXX.dna
│ ├── Mapping
│ | ├── YYY.bam
│ | └── YYY.bam.bai
| └── VariantCalling
| └── Raw
| ├── YYY.vcf.gz
| └── YYY.vcf.gz.tbi
└── QC
├── MultiQC_FastQC_data.zip
├── MultiQC_FastQC.html
├── MultiQC_Mapping_data.zip
├── MultiQC_Mapping.html
├── MultiQC_GatkGermlineCalling_data.zip
├── MultiQC_GatkGermlineCalling.html
├── report_pe
│ └── YYY.html
└── report_se
└── YYY.html
├── QC
│   ├── MultiQC_FastQC_data.zip
│   ├── MultiQC_FastQC.html
│   ├── report_pe
│   │   ├── YYY.1_fastqc.zip
│   │   ├── YYY.1.html
│   │   ├── YYY.2_fastqc.zip
│   │   ├── YYY.2.html
│   │   └── YYY.html
└── XXX.dna
├── Mapping
│   ├── YYY.bam
│   ├── YYY.bam.bai
├── QC
│   ├── MultiQC_GatkGermlineCalling_data.zip
│   ├── MultiQC_GatkGermlineCalling.html
│   ├── MultiQC_Mapping_data.zip
│   └── MultiQC_Mapping.html
└── VariantCalling
└── Germline
├── YYY.vcf.gz
├── YYY.vcf.gz.filteringStats.tsv
└── YYY.vcf.gz.tbi




Expand Down
6 changes: 3 additions & 3 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,9 @@ def get_filter_mutect_calls_input(
af_only: str | None = getattr(genome_data, "af_only", None)
af_only_tbi: str | None = getattr(genome_data, "af_only_tbi", None)
if af_only and af_only_tbi:
filter_mutect_calls_input["contamination"] = (
f"tmp/fair_gatk_mutect_germline/gatk_calcultate_contamination/{species}.{build}.{release}.{datatype}/{sample}.pileups.table"
)
filter_mutect_calls_input[
"contamination"
] = f"tmp/fair_gatk_mutect_germline/gatk_calcultate_contamination/{species}.{build}.{release}.{datatype}/{sample}.pileups.table"

return filter_mutect_calls_input

Expand Down

0 comments on commit 18bb7e6

Please sign in to comment.