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)
9 rows where transcript_id = 2065639
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 11203209 | GT-AG | 0 | 1.000000099473604e-05 | 1579 | rna-XM_029087101.1 2065639 | 1 | 20596 | 22174 | Antrostomus carolinensis 279965 | AGT|GTAAGTCCTT...ATAATTATGATA/AAAGTACTAACG...TACAG|TGG | 1 | 1 | 3.024 |
| 11203210 | GT-AG | 0 | 1.000000099473604e-05 | 1755 | rna-XM_029087101.1 2065639 | 2 | 18788 | 20542 | Antrostomus carolinensis 279965 | CAG|GTAAGTGCTA...AGCATTTTAGAA/AGTTGACTAAAT...CAAAG|GCT | 0 | 1 | 6.751 |
| 11203211 | GT-AG | 0 | 1.000000099473604e-05 | 347 | rna-XM_029087101.1 2065639 | 3 | 18279 | 18625 | Antrostomus carolinensis 279965 | ATG|GTAAAGTACT...GTCATTTTAATT/GTCATTTTAATT...TCTAG|CTT | 0 | 1 | 18.143 |
| 11203212 | GT-AG | 0 | 6.845358497442749e-05 | 1549 | rna-XM_029087101.1 2065639 | 4 | 16596 | 18144 | Antrostomus carolinensis 279965 | CAG|GTAAGTTTTA...AGCTTCTTATAA/CAGCTTCTTATA...CTCAG|TGA | 2 | 1 | 27.567 |
| 11203213 | GT-AG | 0 | 4.1099527075720174e-05 | 2705 | rna-XM_029087101.1 2065639 | 5 | 13812 | 16516 | Antrostomus carolinensis 279965 | GAG|GTAACAGATA...TGTTCTTTAATG/TAATGATTTATT...TAAAG|GGC | 0 | 1 | 33.122 |
| 11203214 | GT-AG | 0 | 0.0011011663780974 | 1634 | rna-XM_029087101.1 2065639 | 6 | 11959 | 13592 | Antrostomus carolinensis 279965 | CAG|GTACCATGGG...ACTTTCTTTGTG/AGCTGATTAACT...CCAAG|GTT | 0 | 1 | 48.523 |
| 11203215 | GT-AG | 0 | 1.000000099473604e-05 | 763 | rna-XM_029087101.1 2065639 | 7 | 11118 | 11880 | Antrostomus carolinensis 279965 | GAG|GTAAATCAGA...AATGTTTTAATG/ATTTTTCTAATT...AATAG|TCT | 0 | 1 | 54.008 |
| 11203216 | GT-AG | 0 | 0.0003857876493478 | 5440 | rna-XM_029087101.1 2065639 | 8 | 5620 | 11059 | Antrostomus carolinensis 279965 | AAG|GTATGTTAAT...TGATTCTTCACA/ATGTTATTTACT...TCCAG|GTG | 1 | 1 | 58.087 |
| 11203217 | GT-AG | 0 | 0.0020881543199873 | 420 | rna-XM_029087101.1 2065639 | 9 | 4949 | 5368 | Antrostomus carolinensis 279965 | TTT|GTGTACCAGA...TTGTCTTTGTCC/TGGCTCTTCACG...TGCAG|GCA | 0 | 1 | 75.738 |
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]);