We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8076c76 commit 9bcda5fCopy full SHA for 9bcda5f
1 file changed
main/como/rnaseq_gen.py
@@ -840,7 +840,8 @@ async def _process(
840
expressed_count = len(boolean_matrix[boolean_matrix["expressed"] == 1])
841
high_confidence_count = len(boolean_matrix[boolean_matrix["high"] == 1])
842
843
- boolean_matrix.dropna(subset="entrez_gene_id", inplace=True)
+ # TODO: 2025-OCT-31: commented out dropping entrez ids, should this be kept?
844
+ # boolean_matrix.dropna(subset="entrez_gene_id", inplace=True)
845
boolean_matrix.to_csv(output_boolean_activity_filepath, index=False)
846
logger.info(f"{context_name} - Found {expressed_count} expressed genes, {high_confidence_count} of which are confidently expressed")
847
logger.success(f"Wrote boolean matrix to {output_boolean_activity_filepath}")
0 commit comments