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
I assumle that line 349 of the file deepimpute/multinet.py genes_not_in_target = np.setdiff1d(targets, covariance_matrix.columns) tries to get the genes that are in the covariance matrix but not in "targets". However, the line of code above does the opposite, i.e. getting the genes that are in targets but not in the matrix's columns. Is this a bug?
The text was updated successfully, but these errors were encountered:
I assumle that line 349 of the file deepimpute/multinet.py
genes_not_in_target = np.setdiff1d(targets, covariance_matrix.columns)
tries to get the genes that are in the covariance matrix but not in "targets". However, the line of code above does the opposite, i.e. getting the genes that are in targets but not in the matrix's columns. Is this a bug?The text was updated successfully, but these errors were encountered: