You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A couple questions regarding the GeneLevelThresholding class:
The assignment of the global_quantiles attribute in the __init__ method (line 56) currently takes the mean across the local quantiles. These values are different then if you were to flatten the whole matrix and take the quantiles like that (pd.Series(omics_dataframe.values.flatten()).quantile(qvalues)). Is this correct, or should it be taking the quantiles across the flattened values?
The call to local_t2_thresholding (line 176) assigns gtup as self.global_threshold_lower. Should this be assigned up self.global_threshold_upper instead? If not, is self.global_threshold_upper not being used?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi there,
A couple questions regarding the
GeneLevelThresholding
class:global_quantiles
attribute in the__init__
method (line 56) currently takes the mean across the local quantiles. These values are different then if you were to flatten the whole matrix and take the quantiles like that (pd.Series(omics_dataframe.values.flatten()).quantile(qvalues)
). Is this correct, or should it be taking the quantiles across the flattened values?local_t2_thresholding
(line 176) assignsgtup
asself.global_threshold_lower
. Should this be assigned upself.global_threshold_upper
instead? If not, isself.global_threshold_upper
not being used?Thanks!
The text was updated successfully, but these errors were encountered: