Skip to content

Commit

Permalink
closes #40
Browse files Browse the repository at this point in the history
Uses identical to test for equivalence of a logical vector from a test and the reference.
  • Loading branch information
rmflight committed Mar 22, 2024
1 parent 0cf64d8 commit 6efbf9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: categoryCompare2
Version: 0.100.14
Version: 0.100.15
Title: Meta-Analysis of High-Throughput Experiments Using Feature
Annotations
Author: Robert M. Flight <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion R/graph_visualization.R
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ setMethod("annotation_combinations",

for (in_comb in name_combinations){
has_match <- apply(sig_matrix, 1, function(in_sig){
in_sig == unique_combinations[in_comb, ]
identical(in_sig, unique_combinations[in_comb, ])
})
combination_assign[has_match] <- in_comb
description_assign[has_match] <- group_description[in_comb]
Expand Down

0 comments on commit 6efbf9b

Please sign in to comment.