Skip to content

Commit

Permalink
Merge pull request #47 from PNNL-CompBio/v1.0.0
Browse files Browse the repository at this point in the history
V1.0.0
  • Loading branch information
christinehc authored Apr 5, 2022
2 parents deb4b98 + 649fecb commit bc760a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions snekmer/rules/cluster.smk
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ use rule unzip from process_input with:
# read and process parameters from config
use rule preprocess from process_input with:
input:
fasta=lambda wildcards: join("input", f"{wildcards.nb}.{fa_map[wildcards.nb]}"),
fasta=lambda wildcards: join("input", f"{wildcards.nb}.{FA_MAP[wildcards.nb]}"),
output:
data=join(out_dir, "processed", "full", "{nb}.json"),
desc=join(out_dir, "processed", "full", "{nb}_description.csv"),
Expand All @@ -124,7 +124,7 @@ use rule vectorize_full from kmerize with:
input:
kmers=join(out_dir, "labels", "full", "{nb}.txt"),
params=join(out_dir, "processed", "{nb}.json"),
fasta=lambda wildcards: join("input", f"{wildcards.nb}.{fa_map[wildcards.nb]}"),
fasta=lambda wildcards: join("input", f"{wildcards.nb}.{FA_MAP[wildcards.nb]}"),
log:
join(out_dir, "features", "log", "{nb}.log"),
output:
Expand Down
1 change: 0 additions & 1 deletion snekmer/rules/model.smk
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,6 @@ rule model:
)

# collate ROC-AUC results
# collate PR-AUC results
results["family"] += [family] * cv
results["alphabet_name"] += [alphabet_name.lower()] * cv
results["k"] += [config["k"]] * cv
Expand Down

0 comments on commit bc760a4

Please sign in to comment.