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)
10 rows where transcript_id = 4520938
This data as json, CSV (advanced)
Suggested facets: score, phase, in_cds
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 23578217 | GT-AG | 0 | 1.000000099473604e-05 | 164031 | rna-XM_019966563.1 4520938 | 2 | 135351448 | 135515478 | Bos indicus 9915 | AAG|GTAAGACCTA...TGTCTCATATTT/TTGTGTCTCATA...TACAG|ATT | 0 | 1 | 64.722 |
| 23578218 | GT-AG | 0 | 1.000000099473604e-05 | 7490 | rna-XM_019966563.1 4520938 | 3 | 135343691 | 135351180 | Bos indicus 9915 | AAG|GTAATGTAAC...CATCTCTTCACT/TTGTGTTTTATT...TGCAG|GCC | 0 | 1 | 72.67 |
| 23578219 | GT-AG | 0 | 1.000000099473604e-05 | 10139 | rna-XM_019966563.1 4520938 | 4 | 135333448 | 135343586 | Bos indicus 9915 | AAA|GTAAGTAAGA...TCTTCCTAAGCA/GTTGTGGTCACT...TCTAG|GTT | 2 | 1 | 75.767 |
| 23578220 | GT-AG | 0 | 4.845409877445098e-05 | 26319 | rna-XM_019966563.1 4520938 | 5 | 135307026 | 135333344 | Bos indicus 9915 | CAG|GTAATTTTCA...TGTTTGTTAACT/TGTTTGTTAACT...TTCAG|GAT | 0 | 1 | 78.833 |
| 23578221 | GT-AG | 0 | 1.000000099473604e-05 | 561 | rna-XM_019966563.1 4520938 | 6 | 135306390 | 135306950 | Bos indicus 9915 | ACG|GTAGGCTGAG...AGGCCTGCAGCT/CTGCAGCTCACA...CCTAG|CTC | 0 | 1 | 81.066 |
| 23578222 | GT-AG | 0 | 0.0002631495460068 | 33197 | rna-XM_019966563.1 4520938 | 7 | 135273086 | 135306282 | Bos indicus 9915 | CCA|GTAAATAGGG...GTATCCTTACCT/AGTATCCTTACC...CCTAG|CAT | 2 | 1 | 84.251 |
| 23578223 | GT-AG | 0 | 1.000000099473604e-05 | 497 | rna-XM_019966563.1 4520938 | 8 | 135272413 | 135272909 | Bos indicus 9915 | ATG|GTAAGACTGA...AAGCCTTTGAAA/TTTTTTTTCACT...CACAG|GCA | 1 | 1 | 89.491 |
| 23578224 | GT-AG | 0 | 0.0013106633124207 | 2407 | rna-XM_019966563.1 4520938 | 9 | 135269887 | 135272293 | Bos indicus 9915 | AAG|GTACCAGTAT...TTGTTTTTGATT/TTGTTTTTGATT...ATCAG|GAT | 0 | 1 | 93.034 |
| 23578225 | GT-AG | 0 | 1.000000099473604e-05 | 24052 | rna-XM_019966563.1 4520938 | 10 | 135245728 | 135269779 | Bos indicus 9915 | AGG|GTGAGTAAGT...AAACTTTTAAAA/CAGTAACTCATT...TTCAG|CTC | 2 | 1 | 96.219 |
| 23582850 | GT-AG | 0 | 9.45092836678206e-05 | 12776 | rna-XM_019966563.1 4520938 | 1 | 135517939 | 135530714 | Bos indicus 9915 | AAA|GTAAGTCTTT...TTTCCTTTAAAT/CTTTAAATTATT...TATAG|GTT | 0 | 5.418 |
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]);