Skip to content

Commit

Permalink
Fix analysis table get_cram_paths function with external_id changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieLF committed Jun 18, 2024
1 parent aa08309 commit 0618afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/python/tables/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ async def get_sample_cram_path_map_for_seqr(
INNER JOIN analysis_sequencing_group a_sg ON a_sg.analysis_id = a.id
INNER JOIN sequencing_group sg ON a_sg.sequencing_group_id = sg.id
INNER JOIN sample s ON sg.sample_id = s.id
INNER JOIN participant p ON s.participant_id = p.id
INNER JOIN participant_external_id p ON s.participant_id = p.participant_id
WHERE
{' AND '.join(filters)}
ORDER BY a.timestamp_completed DESC;
Expand Down

0 comments on commit 0618afe

Please sign in to comment.