View source: R/find_common_hit.R
find_common_hit | R Documentation |
This method find the hit in common between the three methods
find_common_hit(hit_zscore, hit_camera, hit_roast, common_in = 3)
hit_zscore |
The matrix obtained by the |
hit_camera |
The matrix obtained by the |
hit_roast |
The matrix obtained by the |
common_in |
Number of methods in which the hit has to be in common in order to be considered a candidate hit. The default value is 3, which means that has to be present in the result of all the three methods. |
A vector containing the common hit
hit_zscore <- data.frame(Gene = c("A", "B", "C", "D", "E"))
hit_camera <- data.frame(Gene = c("A", "B", "C", "F", "H", "G"))
hit_roast <- data.frame(Gene = c("A", "L", "N"))
# common among all the three methods
find_common_hit(hit_zscore, hit_camera, hit_roast)
# common among at least two of the three methods
find_common_hit(hit_zscore, hit_camera, hit_roast, common_in = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.