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 = 35103546
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 197658041 | GT-AG | 0 | 0.0001715755639039 | 4062 | rna-XM_018118140.1 35103546 | 1 | 31285702 | 31289763 | Theobroma cacao 3641 | CTG|GTAAGCTGCC...CGGTCTTTATTT/TTATTTCTAACT...TGAAG|TTG | 2 | 1 | 50.61 |
| 197658042 | GT-CT | 0 | 0.0006719437860376 | 422 | rna-XM_018118140.1 35103546 | 2 | 31289841 | 31290262 | Theobroma cacao 3641 | CTG|GTAAGCTCTA...ACTTTTTTAATC/ACTTTTTTAATC...ATGCT|GAT | 1 | 1 | 52.794 |
| 197658043 | GT-AG | 0 | 0.0001806543186995 | 156 | rna-XM_018118140.1 35103546 | 3 | 31290692 | 31290847 | Theobroma cacao 3641 | GAG|GTTTGTTCTG...CGTACTTTGATT/TTATTTCTCATT...TACAG|GTT | 1 | 1 | 64.965 |
| 197658044 | GT-AG | 0 | 0.0042764102080349 | 311 | rna-XM_018118140.1 35103546 | 4 | 31291024 | 31291334 | Theobroma cacao 3641 | GAG|GTAACTTCAA...TAGGTTTTAATT/TAGGTTTTAATT...TGTAG|GTA | 0 | 1 | 69.957 |
| 197658045 | GT-AG | 0 | 0.6254235186016971 | 81 | rna-XM_018118140.1 35103546 | 5 | 31291454 | 31291534 | Theobroma cacao 3641 | CAT|GTATGCTCTT...GGTTTCTTACAC/ATGCTTCTGATT...TGAAG|AGA | 2 | 1 | 73.333 |
| 197658046 | GT-AG | 0 | 0.0252365665484703 | 473 | rna-XM_018118140.1 35103546 | 6 | 31291696 | 31292168 | Theobroma cacao 3641 | CAG|GTATCATTTT...GATGGATTAATC/TCAGTACTAATA...TGCAG|GCT | 1 | 1 | 77.901 |
| 197658047 | GT-AG | 0 | 0.004141195144384 | 284 | rna-XM_018118140.1 35103546 | 7 | 31292303 | 31292586 | Theobroma cacao 3641 | ACA|GTATGTATTT...TAATATCTAGTT/TGGTGAATAATA...AACAG|TTG | 0 | 1 | 81.702 |
| 197658048 | GT-AG | 0 | 0.0004683811948206 | 89 | rna-XM_018118140.1 35103546 | 8 | 31292804 | 31292892 | Theobroma cacao 3641 | CAG|GTTTTTCTTC...ATTTTCTTATTC/CATTTTCTTATT...TTCAG|GGA | 1 | 1 | 87.858 |
| 197658049 | GT-AG | 0 | 0.0012500760887952 | 447 | rna-XM_018118140.1 35103546 | 9 | 31293023 | 31293469 | Theobroma cacao 3641 | CAG|GTATATCTCA...TGTTGTTTATCC/TTGTTGTTTATC...TGCAG|CAA | 2 | 1 | 91.546 |
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]);