Skip to content

Commit 92bf1b0

Browse files
committed
remove redundant column in query
1 parent e1c9b00 commit 92bf1b0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

SequenceAnalysis/resources/queries/sequenceanalysis/alignment_summary_grouped.sql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ select
3333
-- else 'Minor'
3434
-- end as category,
3535

36-
group_concat(a.rowid) as rowids,
36+
group_concat(a.rowid, ',') as rowids,
3737
group_concat(distinct a.haplotypesWithAllele) as haplotypesWithAllele,
3838

3939
CAST((select sum(s.total) as total FROM sequenceanalysis.alignment_summary s WHERE s.analysis_id = a.analysis_id AND s.rowid IN (
@@ -46,7 +46,6 @@ select
4646
)
4747
) as float) END), 2) as percent_from_locus,
4848
max(lastModified) as lastModified,
49-
group_concat(distinct a.rowid, ',') as rowids,
5049
count(distinct a.rowid) as nAlignments,
5150
max(a.nloci) as nLoci
5251

0 commit comments

Comments
 (0)