Skip to content

Commit

Permalink
Extract the BCRP3 gene from LNCipedia
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosribas committed Dec 13, 2023
1 parent c78923e commit ba27977
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions workflows/litscan/queries/lncipedia.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
-- LNCipedia (Extract BCRP3 gene)
select
upi,
taxid,
gene,
gene_synonym -- Split on ,
from xref x
join rnc_accessions ra
on
ra.accession = x.ac
where
x.deleted = 'N'
and ra."database" = 'LNCIPEDIA'
and (ra."gene" = 'lnc-GGT1-7' or ra."gene" = 'lnc-GGT1-16')
and ra."gene_synonym" != ''
;

0 comments on commit ba27977

Please sign in to comment.