generated from snakemake-workflows/snakemake-workflow-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a75be2
commit 7604792
Showing
6 changed files
with
79 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
* | ||
!.github | ||
!.github/** | ||
!.tests | ||
!.tests/** | ||
!config | ||
!config/REAMDE.md | ||
!config/config.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pepfile: config/pep/config.yaml | ||
|
||
run-date: "test" | ||
|
||
adapter-seqs: "-a GCGAATTTCGACGATCGTTGCATTAACTCGCGAA -g AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT" | ||
|
||
data-handling: | ||
# path to store data within the workflow | ||
data: "data/" | ||
resources: "resources/" | ||
|
||
quality-criteria: | ||
# minimal length of acceptable reads | ||
min-length-reads: 15 | ||
# average quality of acceptable reads (PHRED) | ||
min-PHRED: 20 | ||
|
||
human-ref: "https://ftp.ncbi.nlm.nih.gov/genomes/all/GCA/000/001/405/GCA_000001405.29_GRCh38.p14/GCA_000001405.29_GRCh38.p14_genomic.fna.gz" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
show_analysis_time: True | ||
|
||
# order of report | ||
module_order: | ||
- fastqc: | ||
name: "Reads Quality Control" | ||
target: "FastQC" | ||
- fastp: | ||
name: "Reads Preprocessing" | ||
target: "fastp" | ||
|
||
report_section_order: | ||
fastqc_sequence_length_distribution: remove | ||
fastqc_per_sequence_gc_content: remove | ||
fastqc_per_base_n_content: remove | ||
fastqc_per_base_sequence_content: remove | ||
fastqc_sequence_duplication_levels: remove | ||
fastqc_per_base_sequence_quality: remove | ||
fastqc_status_checks: | ||
before: "fastqc_sequence_counts" | ||
|
||
# sample name cleaning | ||
fn_clean_exts: | ||
- ".fastp" | ||
- ".trimmed" | ||
- ".fastq" | ||
- ".gz" | ||
- "_L001_R1_001" | ||
- "_L001_R2_001" | ||
- "_L002_R1_001" | ||
- "_L002_R2_001" | ||
- "_R1" | ||
- "_S" | ||
- ".1" | ||
- ".2" | ||
|
||
# customising general Statistics | ||
table_columns_visible: | ||
Reads Quality Control: | ||
percent_duplicates: False | ||
percent_gc: False | ||
avg_sequence_length: False | ||
median_sequence_length: False | ||
percent_fails: False | ||
total_sequences: False | ||
Reads Preprocessing: | ||
pct_duplication: False | ||
after_filtering_q30_rate: True | ||
after_filtering_q30_bases: False | ||
after_filtering_gc_content: False | ||
pct_surviving: True | ||
pct_adapter: False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pep_version: 2.0.0 | ||
sample_table: "samples.csv" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
sample_name,fq1,fq2 | ||
115_L001,/groups/ds/resistance_cefiderocol/data/illumina/115_L001_R1.fastq.gz,/groups/ds/resistance_cefiderocol/data/illumina/115_L001_R2.fastq.gz |