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 = 29350659
This data as json, CSV (advanced)
Suggested facets: score, length, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 163478664 | GT-AG | 0 | 2.08583119207238e-05 | 1064 | rna-XM_034373461.1 29350659 | 3 | 38331861 | 38332924 | Prunus dulcis 3755 | CAT|GTAAGTTCGA...TGTTTCTTTCTG/CTACGACTGAAT...TCCAG|GTT | 0 | 1 | 5.421 |
| 163478665 | GT-AG | 0 | 2.4403840353189277e-05 | 184 | rna-XM_034373461.1 29350659 | 4 | 38333126 | 38333309 | Prunus dulcis 3755 | ATG|GTAGTATTCC...TTGGCCTAAATC/CTAAATCTAACT...ATCAG|GGT | 0 | 1 | 8.296 |
| 163478666 | GT-AG | 0 | 1.000000099473604e-05 | 155 | rna-XM_034373461.1 29350659 | 5 | 38333433 | 38333587 | Prunus dulcis 3755 | CAT|GTGAGAATCT...TTTGTCTTAATC/TTTGTCTTAATC...GTCAG|GTT | 0 | 1 | 10.056 |
| 163478667 | GT-AG | 0 | 1.000000099473604e-05 | 70 | rna-XM_034373461.1 29350659 | 6 | 38333626 | 38333695 | Prunus dulcis 3755 | CAG|GTGGGCATTA...CTTGCTTTATCT/CTTTATCTAATT...TTCAG|AGA | 2 | 1 | 10.599 |
| 163478668 | GT-AG | 0 | 1.000000099473604e-05 | 1336 | rna-XM_034373461.1 29350659 | 7 | 38333826 | 38335161 | Prunus dulcis 3755 | AAG|GTCAGTCTTT...TTTTTCTTCTTT/TCTGTTGTCATA...TACAG|ATG | 0 | 1 | 12.459 |
| 163478669 | GT-AG | 0 | 3.691634646322695e-05 | 774 | rna-XM_034373461.1 29350659 | 8 | 38340601 | 38341374 | Prunus dulcis 3755 | CAG|GTACTTAACT...TCTATCTTGAAA/ATGTGCTTCATT...GACAG|GAT | 0 | 1 | 90.259 |
| 163478670 | GT-AG | 0 | 0.0001332058555022 | 184 | rna-XM_034373461.1 29350659 | 9 | 38341531 | 38341714 | Prunus dulcis 3755 | GAG|GTACGTATTT...TTTTTCATAACA/TTTTTTTTCATA...TGCAG|TTG | 0 | 1 | 92.49 |
| 163478671 | GT-AG | 0 | 1.000000099473604e-05 | 78 | rna-XM_034373461.1 29350659 | 10 | 38341817 | 38341894 | Prunus dulcis 3755 | AAG|GTAAATAACT...GTGTCCTTGAAC/CTTGAACTGACA...ATTAG|GTA | 0 | 1 | 93.949 |
| 163478672 | GT-AG | 0 | 0.0002925557379378 | 228 | rna-XM_034373461.1 29350659 | 11 | 38342038 | 38342265 | Prunus dulcis 3755 | GAG|GTACATCTTA...AATTTCTTATGA/CAATTTCTTATG...TCCAG|TTC | 2 | 1 | 95.995 |
| 163500768 | GT-AG | 0 | 0.019303913860602 | 441 | rna-XM_034373461.1 29350659 | 1 | 38330534 | 38330974 | Prunus dulcis 3755 | TAG|GTACCTACCC...TTGTCTCTAACA/TTGTCTCTAACA...GTCAG|TCT | 0 | 1.502 | |
| 163500769 | GT-AG | 0 | 1.979728936364492e-05 | 555 | rna-XM_034373461.1 29350659 | 2 | 38331171 | 38331725 | Prunus dulcis 3755 | AAG|GTTTGTGCTC...TTACTCTTAATT/TCTTAATTGATT...TGCAG|GAG | 0 | 4.306 |
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]);