Skip to content

Commit 5cc7346

Browse files
committed
Fix SQL error
1 parent d2485fc commit 5cc7346

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/resources/queries/singlecell/duplicatePrototypes.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SELECT
77

88
FROM sequenceanalysis.outputfiles o
99
WHERE o.category = 'Seurat Object Prototype'
10-
GROUP BY o.readset
10+
GROUP BY o.readset, o.category
1111
HAVING COUNT(*) > 1
1212

1313
UNION ALL
@@ -21,5 +21,5 @@ SELECT
2121

2222
FROM sequenceanalysis.outputfiles o
2323
WHERE o.category = '10x Loupe File'
24-
GROUP BY o.readset
24+
GROUP BY o.readset, o.category
2525
HAVING COUNT(*) > 1

0 commit comments

Comments
 (0)