From 7a04ae04ca6f71d31af5ebb17cc417e4ab395699 Mon Sep 17 00:00:00 2001 From: PratibhaPanwar Date: Fri, 13 Dec 2024 16:11:55 +1100 Subject: [PATCH] Updated readme to reflect the change in function arguments - cell_ids are no longer required as input. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8609a56..761a764 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ library(clustSIGNAL) data(example) -# Here, the cell labels are in the column 'uniqueID' and sample labels are in 'sample_id' column. +# Here, the sample labels are in 'sample_id' column. set.seed(100) -res <- clustSIGNAL(spe, samples = "sample_id", cells = "uniqueID", outputs = "a") +res <- clustSIGNAL(spe, samples = "sample_id", outputs = "a") ```