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 = 38690294
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 213932516 | GT-AG | 0 | 1.000000099473604e-05 | 4312 | rna-XM_016029146.2 38690294 | 2 | 11820103 | 11824414 | Ziziphus jujuba 326968 | GGG|GTGAGTTATC...TATTTTTTGATC/TATTTTTTGATC...TCCAG|TAC | 0 | 1 | 10.798 |
| 213932517 | GT-AG | 0 | 0.0004053689865703 | 132 | rna-XM_016029146.2 38690294 | 3 | 11819869 | 11820000 | Ziziphus jujuba 326968 | AAG|GTATGTCCTG...CTTGTTTTGAAA/CTTGTTTTGAAA...TGAAG|CGT | 0 | 1 | 12.128 |
| 213932518 | GT-AG | 0 | 0.0029149680659562 | 584 | rna-XM_016029146.2 38690294 | 4 | 11818493 | 11819076 | Ziziphus jujuba 326968 | GAG|GTATTTATTT...TTCCCATTAAAT/TTTTTTCCCATT...TGCAG|AAG | 0 | 1 | 22.457 |
| 213932519 | GT-AG | 0 | 1.000000099473604e-05 | 125 | rna-XM_016029146.2 38690294 | 5 | 11818260 | 11818384 | Ziziphus jujuba 326968 | CAG|GTAAAAGAAT...ACTATCTTACCT/TACTATCTTACC...CACAG|GTT | 0 | 1 | 23.865 |
| 213932520 | GT-AG | 0 | 1.6165778719957317e-05 | 3350 | rna-XM_016029146.2 38690294 | 6 | 11812087 | 11815436 | Ziziphus jujuba 326968 | AAG|GTAAATTGTC...ATGTTGTTGATA/TAAGTTCTAATT...ATCAG|TCC | 0 | 1 | 60.681 |
| 213932521 | GT-AG | 0 | 1.000000099473604e-05 | 1872 | rna-XM_016029146.2 38690294 | 7 | 11810057 | 11811928 | Ziziphus jujuba 326968 | GAG|GTAAGTACTT...ATGACCTGATTT/TGATTTTTCATA...TTTAG|ATG | 2 | 1 | 62.741 |
| 213932522 | GT-AG | 0 | 0.0003387251968443 | 1564 | rna-XM_016029146.2 38690294 | 8 | 11808378 | 11809941 | Ziziphus jujuba 326968 | GAG|GTACTTATAT...AGTTTTTTGATT/AGTTTTTTGATT...GACAG|AGT | 0 | 1 | 64.241 |
| 213932523 | GT-AG | 0 | 0.0322635052488785 | 337 | rna-XM_016029146.2 38690294 | 9 | 11807958 | 11808294 | Ziziphus jujuba 326968 | ATT|GTATGTTCAC...TTCACTTTCATT/TTCACTTTCATT...AACAG|TGC | 2 | 1 | 65.323 |
| 213932524 | GT-AG | 0 | 0.0001242606728141 | 109 | rna-XM_016029146.2 38690294 | 10 | 11807215 | 11807323 | Ziziphus jujuba 326968 | CCG|GTAGTTCTTC...ATTTACTTAGTG/TTAGTGTTTATG...TGCAG|TAT | 0 | 1 | 73.592 |
| 213945247 | GT-AG | 0 | 0.0001447003081608 | 2304 | rna-XM_016029146.2 38690294 | 1 | 11824752 | 11827055 | Ziziphus jujuba 326968 | TTG|GTAAGCTCCT...TCCTGCTTGACA/TTGCTTCTAATA...TTCAG|GAT | 0 | 7.942 |
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]);