From f60ecf3f219ee15c422d3dc5bf1e61ea1f7b9cea Mon Sep 17 00:00:00 2001 From: chris-s-friedman Date: Tue, 7 Mar 2023 10:14:31 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20remove=20polya=5Fstranded=20libr?= =?UTF-8?q?ary=5Fprep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit we have columns in the ds for library_prep and for stranded-ness. having a library prep enum for polya_stranded combines these two columns when we want to keep them seperated. --- dataservice/api/sequencing_experiment/schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataservice/api/sequencing_experiment/schemas.py b/dataservice/api/sequencing_experiment/schemas.py index 5b5edb7c..9c646220 100644 --- a/dataservice/api/sequencing_experiment/schemas.py +++ b/dataservice/api/sequencing_experiment/schemas.py @@ -26,7 +26,7 @@ 'Poly-T Enrichment', 'Random', 'rRNA Depletion', 'miRNA Size Fractionation', 'Other'} -LIBRARY_PREP_ENUM = {'polyA', 'polyA Stranded', 'totalRNAseq', 'Other'} +LIBRARY_PREP_ENUM = {'polyA', 'totalRNAseq', 'Other'} class SequencingExperimentSchema(BaseSchema):