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 = 4721478
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 24707078 | GT-AG | 0 | 0.0621617691692553 | 149 | Brame.01UG124400.1.v1.1 4721478 | 1 | 20689232 | 20689380 | Brachypodium mexicanum 52141 | TCG|GTAACCCTCT...TTTTTTTTGGTG/AGATTTCTGAAA...TGAAG|ACG | 0 | 1 | 1.185 |
| 24707079 | GT-AG | 0 | 1.000000099473604e-05 | 824 | Brame.01UG124400.1.v1.1 4721478 | 2 | 20688318 | 20689141 | Brachypodium mexicanum 52141 | GAG|GTGAGCCAGT...ATGCTTTTGAAC/ATGCTTTTGAAC...TGCAG|GTT | 0 | 1 | 3.407 |
| 24707080 | GT-AG | 0 | 3.667418336197085e-05 | 170 | Brame.01UG124400.1.v1.1 4721478 | 3 | 20688095 | 20688264 | Brachypodium mexicanum 52141 | TTG|GTAAGTTTCT...TAACATTTGACC/TAACATTTGACC...CCCAG|GTA | 2 | 1 | 4.716 |
| 24707081 | GT-AG | 0 | 2.039739641029638 | 890 | Brame.01UG124400.1.v1.1 4721478 | 4 | 20687129 | 20688018 | Brachypodium mexicanum 52141 | CAG|GTATCTTTCT...CTTGCCTTTATG/TTTTTTCTCATG...TGCAG|GAT | 0 | 1 | 6.593 |
| 24707082 | GT-AG | 0 | 0.0001438820085916 | 85 | Brame.01UG124400.1.v1.1 4721478 | 5 | 20686982 | 20687066 | Brachypodium mexicanum 52141 | CCT|GTAAAGTTTC...TTTGTCTTATGA/TTTTGTCTTATG...ATTAG|GTT | 2 | 1 | 8.123 |
| 24707083 | GT-AG | 0 | 0.0011493976566248 | 96 | Brame.01UG124400.1.v1.1 4721478 | 6 | 20686807 | 20686902 | Brachypodium mexicanum 52141 | AAG|GTACATATTG...TTTGCCTTACTG/TTTTGCCTTACT...TCTAG|CTA | 0 | 1 | 10.074 |
| 24707084 | GT-AG | 0 | 1.6137907183645473e-05 | 93 | Brame.01UG124400.1.v1.1 4721478 | 7 | 20686654 | 20686746 | Brachypodium mexicanum 52141 | GAT|GTGAGCTTCC...GTACTTTTATTG/CTTTTATTGATT...TGTAG|GTT | 0 | 1 | 11.556 |
| 24707085 | GT-AG | 0 | 1.000000099473604e-05 | 582 | Brame.01UG124400.1.v1.1 4721478 | 8 | 20684479 | 20685060 | Brachypodium mexicanum 52141 | CAG|GTTAGAAACC...CTTCCCATGATT/CATGATTTAACT...TGCAG|GTT | 0 | 1 | 50.889 |
| 24707086 | GT-AG | 0 | 1.6948781242272068e-05 | 201 | Brame.01UG124400.1.v1.1 4721478 | 9 | 20683408 | 20683608 | Brachypodium mexicanum 52141 | CAG|GTATGACGTG...TACATCTTATTG/TGATTATTTATG...TCCAG|GCC | 0 | 1 | 72.37 |
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]);