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 = 24462930
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 133658274 | GT-AG | 0 | 1.000000099473604e-05 | 9563 | rna-XM_004391645.2 24462930 | 1 | 9661398 | 9670960 | Odobenus rosmarus 9707 | GAG|GTAAGACCTC...TTTCACTTATTT/TTAAATTTCACT...TATAG|GTA | 1 | 1 | 9.804 |
| 133658275 | GT-AG | 0 | 1.000000099473604e-05 | 638 | rna-XM_004391645.2 24462930 | 2 | 9671197 | 9671834 | Odobenus rosmarus 9707 | TTC|GTAAGTGGAA...TTGGTCTTAAAC/CTTAAACTTATT...GATAG|GTT | 0 | 1 | 17.268 |
| 133658276 | GT-AG | 0 | 1.000000099473604e-05 | 6365 | rna-XM_004391645.2 24462930 | 3 | 9672067 | 9678431 | Odobenus rosmarus 9707 | CTG|GTAAGAATTT...AGTTATTTAACT/AGTTATTTAACT...TGTAG|GTT | 1 | 1 | 24.605 |
| 133658277 | GT-AG | 0 | 3.090288745095131e-05 | 446 | rna-XM_004391645.2 24462930 | 4 | 9679274 | 9679719 | Odobenus rosmarus 9707 | CAG|GTATGATGAA...ATTTACTTAGAT/AAAATATTTACT...ATTAG|GTA | 0 | 1 | 51.233 |
| 133658278 | GT-AG | 0 | 1.000000099473604e-05 | 2909 | rna-XM_004391645.2 24462930 | 5 | 9679900 | 9682808 | Odobenus rosmarus 9707 | CCG|GTAAGTAATT...AGAACTTTATTT/ACTTTATTTACT...TGTAG|TTG | 0 | 1 | 56.926 |
| 133658279 | GT-AG | 0 | 1.000000099473604e-05 | 1303 | rna-XM_004391645.2 24462930 | 6 | 9683055 | 9684357 | Odobenus rosmarus 9707 | CAG|GTAAAGCCGT...TCTGTTTTACCT/TTCTGTTTTACC...CACAG|GTC | 0 | 1 | 64.706 |
| 133658280 | GT-AG | 0 | 1.000000099473604e-05 | 1235 | rna-XM_004391645.2 24462930 | 7 | 9684503 | 9685737 | Odobenus rosmarus 9707 | CAG|GTAATGAGAA...TGTTTTTTATTT/GTGTTTTTTATT...TATAG|GTG | 1 | 1 | 69.292 |
| 133658281 | GT-AG | 0 | 0.0002927227894444 | 2646 | rna-XM_004391645.2 24462930 | 8 | 9685856 | 9688501 | Odobenus rosmarus 9707 | TCA|GTAAGTATTT...TAAACTTTATTA/AGTGATCTGATT...TGCAG|ATG | 2 | 1 | 73.023 |
| 133658282 | GT-AG | 0 | 1.000000099473604e-05 | 119 | rna-XM_004391645.2 24462930 | 9 | 9688661 | 9688779 | Odobenus rosmarus 9707 | CAG|GTAGATAAAT...TTTTTTGTACCC/TTTTTTTGTACC...TATAG|GTG | 2 | 1 | 78.052 |
| 133658283 | GT-AG | 0 | 1.2519500726968974e-05 | 772 | rna-XM_004391645.2 24462930 | 10 | 9688956 | 9689727 | Odobenus rosmarus 9707 | AAG|GTAACGGTAC...TGTACCTTACAC/TTGTACCTTACA...CATAG|GAG | 1 | 1 | 83.618 |
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]);