Skip to content

Commit

Permalink
formating
Browse files Browse the repository at this point in the history
  • Loading branch information
SilasK committed Oct 10, 2023
1 parent e8550a9 commit e7aadbc
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions workflow/rules/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -202,22 +202,17 @@ if not SKIP_QC:
benchmark:
"logs/benchmarks/QC/quality_filter/{sample}.txt"
params:
,
ref=(
"ref=%s" % config.get("preprocess_adapters")
if config.get("preprocess_adapters")
else ""
),
mink= "mink=%d" % config.get("preprocess_adapter_min_k"),
ktrim= "ktrim=%s" % config.get("preprocess_kmer_trim")
,
mink="mink=%d" % config.get("preprocess_adapter_min_k"),
ktrim="ktrim=%s" % config.get("preprocess_kmer_trim"),
trimq=config.get("preprocess_minimum_base_quality"),
hdist="hdist=%d" % config.get("preprocess_allowable_kmer_mismatches")
,
k= "k=%d"
% config.get(
"preprocess_reference_kmer_match_length"),

,
hdist="hdist=%d" % config.get("preprocess_allowable_kmer_mismatches"),
k="k=%d" % config.get("preprocess_reference_kmer_match_length"),
qtrim=config.get("qtrim"),
error_correction_pe=(
"t"
Expand Down

0 comments on commit e7aadbc

Please sign in to comment.