Skip to content

Commit cd58f5b

Browse files
committed
fix big with variable_meta
was incorrectly taking col names instead of row names
1 parent 2a261db commit cd58f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/mv_feature_filter_class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ setMethod(f="method.apply",
8181
IN=apply(flags[,(length(L)+1):ncol(flags)],MARGIN=1,function(x) any(x==1))
8282
} else {
8383
IN=flags[,2]==1
84-
nmes=colnames(flags)[IN]
84+
nmes=rownames(flags)[IN]
8585
}
8686
nmes=colnames(flags)[IN]
8787
vmeta=vmeta[nmes,,drop=FALSE]

0 commit comments

Comments
 (0)