introns
Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)
- id
- INTEGER (primary key), globally unique identifier for each intron
- dinucleotide_pair
- TEXT, terminal dinucleotide sequences of the intron
- is_minor
- INTEGER, indicates if the intron is a minor intron (1) or not (0)
- score
- REAL, score representing the probability (0-100%) of the intron being minor
- length
- INTEGER, length of the intron in base pairs
- transcript_id
- INTEGER (foreign key referencing transcripts(id)), parent transcript
- ordinal_index
- INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
- start
- INTEGER, start position of the intron in the genome
- end
- INTEGER, end position of the intron in the genome
- taxonomy_id
- INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
- scored_motifs
- TEXT, motifs scored for the intron
- phase
- INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
- in_cds
- INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
- relative_position
- REAL, relative position of the intron within the transcript (as a percentage of coding length)
11 rows where transcript_id = 8322089
This data as json, CSV (advanced)
Suggested facets: score, phase
id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
44702350 | GT-AG | 0 | 1.000000099473604e-05 | 55258 | rna-XM_006830732.1 8322089 | 1 | 51267978 | 51323235 | Chrysochloris asiatica 185453 | TAG|GTAATGATGG...TTGTCCTTGCTG/GTGGGAATAACA...CCTAG|AGT | 1 | 1 | 5.95 |
44702351 | GT-AG | 0 | 2.444994072147402e-05 | 852 | rna-XM_006830732.1 8322089 | 2 | 51266973 | 51267824 | Chrysochloris asiatica 185453 | GAG|GTACTTCCCC...ACCCTCTCAACA/GACCCTCTCAAC...TCCAG|GGC | 1 | 1 | 16.295 |
44702352 | GT-AG | 0 | 1.000000099473604e-05 | 19873 | rna-XM_006830732.1 8322089 | 3 | 51246650 | 51266522 | Chrysochloris asiatica 185453 | GAG|GTGAGTTCCG...TCTTCCCTGACC/TCTTCCCTGACC...TGCAG|CTG | 1 | 1 | 46.721 |
44702353 | GT-AG | 0 | 1.000000099473604e-05 | 388 | rna-XM_006830732.1 8322089 | 4 | 51246184 | 51246571 | Chrysochloris asiatica 185453 | ATG|GTGCGTCTGT...GAGGCCTTTCCT/CCTAATATCACC...GGCAG|TGA | 1 | 1 | 51.995 |
44702354 | GT-AG | 0 | 1.000000099473604e-05 | 11829 | rna-XM_006830732.1 8322089 | 5 | 51234285 | 51246113 | Chrysochloris asiatica 185453 | TCT|GTGAGTATGT...CCTGTCTCACCC/ACCTGTCTCACC...CCCAG|GCA | 2 | 1 | 56.728 |
44702355 | GT-AG | 0 | 8.55414320470543e-05 | 1323 | rna-XM_006830732.1 8322089 | 6 | 51232885 | 51234207 | Chrysochloris asiatica 185453 | TGT|GTGGCTCCTC...GACTCTGGGATG/ATGCAGATGAGT...GTAAG|CCT | 1 | 1 | 61.934 |
44702356 | GT-AG | 0 | 1.000000099473604e-05 | 348 | rna-XM_006830732.1 8322089 | 7 | 51232442 | 51232789 | Chrysochloris asiatica 185453 | AAG|GTGAGACCCG...AGTCCCTTAGTT/TAGTCCCTTAGT...AACAG|AAA | 0 | 1 | 68.357 |
44702357 | GT-AG | 0 | 1.000000099473604e-05 | 13418 | rna-XM_006830732.1 8322089 | 8 | 51218967 | 51232384 | Chrysochloris asiatica 185453 | CAG|GTGGGTGATG...GGCCCCTTCCAG/ACCCTGCTAACG...CACAG|AGT | 0 | 1 | 72.211 |
44702358 | GT-AG | 0 | 1.000000099473604e-05 | 7909 | rna-XM_006830732.1 8322089 | 9 | 51210899 | 51218807 | Chrysochloris asiatica 185453 | GAG|GTCAGGACAC...GCCATCTTGTTT/CATCTGCTCACA...TACAG|AGC | 0 | 1 | 82.961 |
44702359 | GT-AG | 0 | 0.0002501507287872 | 4354 | rna-XM_006830732.1 8322089 | 10 | 51206472 | 51210825 | Chrysochloris asiatica 185453 | TCG|GTAGGTATCC...GTTGTCTTGATT/GTTGTCTTGATT...TGCAG|ACA | 1 | 1 | 87.897 |
44702360 | GT-AG | 0 | 1.000000099473604e-05 | 73984 | rna-XM_006830732.1 8322089 | 11 | 51132405 | 51206388 | Chrysochloris asiatica 185453 | CAA|GTAAGTTGGT...TAGAGCATGACA/TAGAGCATGACA...CCCAG|TTC | 0 | 1 | 93.509 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "introns" ( "id" INTEGER, "dinucleotide_pair" TEXT, "is_minor" INTEGER, "score" REAL, "length" INTEGER, "transcript_id" INTEGER, "ordinal_index" INTEGER, "start" INTEGER, "end" INTEGER, "taxonomy_id" INTEGER, "scored_motifs" TEXT, "phase" INTEGER, "in_cds" INTEGER, "relative_position" REAL ,PRIMARY KEY ([id]), FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]), FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id]) ); CREATE INDEX [idx_introns_transcript_id] ON [introns] ([transcript_id]); CREATE INDEX [idx_introns_taxonomy_id] ON [introns] ([taxonomy_id]); CREATE INDEX [idx_introns_phase] ON [introns] ([phase]); CREATE INDEX [idx_introns_is_minor] ON [introns] ([is_minor]); CREATE INDEX [idx_introns_dinucleotide_pair] ON [introns] ([dinucleotide_pair]); CREATE INDEX [idx_introns_score] ON [introns] ([score]); CREATE INDEX [idx_introns_in_cds] ON [introns] ([in_cds]);