Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"grader": {
"type": "multiple_choice",
"config": {
"correct_answer": "B",
"correct_answer": "A",
"options": {
"A": "sample",
"B": "age_group"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "snrna_qc_01_report_initial_nuclei_after_gene_threshold",
"task": "Attached is a DRG snRNA-seq dataset with obs column age_group in {Adult, Aged}.\n\nGoal: deterministically compute how many nuclei pass an initial gene-detection threshold.\n\nInstructions:\n1) Use the raw UMI count matrix (integer counts).\n2) For each nucleus compute n_genes = number of genes with count > 0.\n3) Keep nuclei with n_genes > 1000.\n4) Report counts for total, Adult, Aged after this filter.\n\nReturn EXACTLY:\n<EVAL_ANSWER>\n{\"total\": <int>, \"Adult\": <int>, \"Aged\": <int>}\n</EVAL_ANSWER>\n",
"task": "Attached is a DRG snRNA-seq dataset with obs column age_group in {Adult, Aged}.\n\nGoal: deterministically compute how many nuclei pass an initial gene-detection threshold.\n\nInstructions:\n1) Use the raw UMI count matrix (integer counts).\n2) For each nucleus compute n_genes = number of genes with count > 0.\n3) Keep nuclei with n_genes >= 1000.\n4) Report counts for total, Adult, Aged after this filter.\n\nReturn EXACTLY:\n<EVAL_ANSWER>\n{\"total\": <int>, \"Adult\": <int>, \"Aged\": <int>}\n</EVAL_ANSWER>\n",
"data_node": "latch://158807664.node",
"grader": {
"type": "numeric_tolerance",
Expand Down