Skip to content

Commit e07500c

Browse files
committed
fix(anomaly scores): Standardize column names for the Run name
1 parent b9564f2 commit e07500c

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@
66
^_pkgdown\.yml$
77
^docs$
88
^pkgdown$
9+
^\.positai$
10+
^\.claude$

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ inst/doc
1010
*.so
1111
*.dll
1212
.lintr
13-
.vscode
13+
.vscode
14+
.positai

R/utils_anomaly_score.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
input = input[feature_counts, on = .(ProteinName, Fragment)]
3333

3434
# Model at PSM level
35+
run_order$Run = .standardizeColnames(run_order$Run)
3536
input = merge(input, run_order, by="Run",
3637
all.x=TRUE, all.y=FALSE)
3738
cols=c("ProteinName", "PSM", "Run", "Order", quality_metrics)

0 commit comments

Comments
 (0)