filter_bicluster_size {mosbi} | R Documentation |
validate_bicluster
.Filter a list of bicluster objects, by erasing all biclusters,
that do not fulfill the minimum number of rows and columns.
Utilizes the function validate_bicluster
.
filter_bicluster_size(bics, minRow, minCol)
bics |
List of bicluster objects. |
minRow |
Minimum number of rows. |
minCol |
Minimum number of columns. |
A filtered list of bicluster objects.
b <- list(bicluster(row=c(1,2), column=c(1,2,3,4)), bicluster(row=c(3,4,5,6), column=c(3,4,5,6))) filter_bicluster_size(b, 3, 3)