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 = 21325449
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 114870022 | GT-AG | 0 | 1.000000099473604e-05 | 974 | rna-XM_025336079.1 21325449 | 2 | 18863339 | 18864312 | Melanaphis sacchari 742174 | CTG|GTAAATATAA...ATTATTTTAAAA/TATTTTTTCATA...TTTAG|GTA | 2 | 1 | 7.9 |
| 114870023 | GT-AG | 0 | 0.0002253258328309 | 887 | rna-XM_025336079.1 21325449 | 3 | 18864437 | 18865323 | Melanaphis sacchari 742174 | CTT|GTAAGTATTT...AATGCTTTATTT/TAATGCTTTATT...AACAG|GGT | 0 | 1 | 11.424 |
| 114870024 | GT-AG | 0 | 0.0017047193511998 | 336 | rna-XM_025336079.1 21325449 | 4 | 18865501 | 18865836 | Melanaphis sacchari 742174 | TTT|GTAAGTTATG...TATTTTTTAATT/TATTTTTTAATT...CATAG|AAG | 0 | 1 | 16.454 |
| 114870025 | GT-AG | 0 | 1.000000099473604e-05 | 1262 | rna-XM_025336079.1 21325449 | 5 | 18866003 | 18867264 | Melanaphis sacchari 742174 | CAA|GTTAGTAATA...AAATTCATAATT/CTCAAATTCATA...TGTAG|CGT | 1 | 1 | 21.171 |
| 114870026 | GT-AG | 0 | 0.0005038084448569 | 64 | rna-XM_025336079.1 21325449 | 6 | 18867483 | 18867546 | Melanaphis sacchari 742174 | ACA|GTAATTTAAA...TTGTTTTTAAAC/TTGTTTTTAAAC...TTTAG|CCT | 0 | 1 | 27.366 |
| 114870027 | GT-AG | 0 | 2.523650668052358e-05 | 72 | rna-XM_025336079.1 21325449 | 7 | 18867724 | 18867795 | Melanaphis sacchari 742174 | CAT|GTAAATCAAT...ATTTTTTTAATT/ATTTTTTTAATT...TTTAG|GCT | 0 | 1 | 32.396 |
| 114870028 | GT-AG | 0 | 1.000000099473604e-05 | 84 | rna-XM_025336079.1 21325449 | 8 | 18867929 | 18868012 | Melanaphis sacchari 742174 | TTG|GTAAGAAATA...TTTATATTATTA/TATATTATCATT...TTTAG|GTA | 1 | 1 | 36.175 |
| 114870029 | GT-AG | 0 | 0.0062732981008464 | 75 | rna-XM_025336079.1 21325449 | 9 | 18868446 | 18868520 | Melanaphis sacchari 742174 | TAG|GTATGTTTAT...AATATTTTATTA/ATTATTCTAATT...ATTAG|TAT | 2 | 1 | 48.48 |
| 114870030 | GT-AG | 0 | 0.0038932787995315 | 79 | rna-XM_025336079.1 21325449 | 10 | 18868909 | 18868987 | Melanaphis sacchari 742174 | AGG|GTATGTCTCT...TTAATTTTAATA/TTTAATTTAATT...TATAG|ATT | 0 | 1 | 59.506 |
| 114870031 | GT-AG | 0 | 1.000000099473604e-05 | 78 | rna-XM_025336079.1 21325449 | 11 | 18869534 | 18869611 | Melanaphis sacchari 742174 | CAA|GTAATTATAT...AATTATTTACTA/TATTTACTAACA...TTTAG|GTT | 0 | 1 | 75.021 |
| 114875348 | GT-AG | 0 | 6.259562024488823e-05 | 2374 | rna-XM_025336079.1 21325449 | 1 | 18860835 | 18863208 | Melanaphis sacchari 742174 | TAG|GTAGATACTA...GCATCTTTAATA/TTTTTATTTATG...TTCAG|AAA | 0 | 7.587 |
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]);