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 = 32191403
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 179733243 | GT-AG | 0 | 1.000000099473604e-05 | 304161 | rna-XM_047125358.1 32191403 | 5 | 353068673 | 353372833 | Schistocerca americana 7009 | AAG|GTCAGTCTCA...GTATGTTTAAAT/GTATGTTTAAAT...TGCAG|GTG | 0 | 1 | 5.365 |
| 179733244 | GT-AG | 0 | 1.000000099473604e-05 | 9166 | rna-XM_047125358.1 32191403 | 6 | 353373044 | 353382209 | Schistocerca americana 7009 | CAG|GTCAGCCATC...ATCAAATTAACG/ATCAAATTAACG...TGCAG|CTA | 0 | 1 | 8.512 |
| 179733245 | GT-AG | 0 | 0.0115243956863093 | 3229 | rna-XM_047125358.1 32191403 | 7 | 353385538 | 353388766 | Schistocerca americana 7009 | AAG|GTATGCTCAA...AGATTTTTATCG/CAGATTTTTATC...TGCAG|ATG | 1 | 1 | 58.385 |
| 179733246 | GT-AG | 0 | 0.0010262990495406 | 20495 | rna-XM_047125358.1 32191403 | 8 | 353389394 | 353409888 | Schistocerca americana 7009 | CAG|GTACCTACCA...TTACTTGTACCA/GACTGTTGCATT...TGCAG|GGT | 1 | 1 | 67.781 |
| 179733247 | GT-AG | 0 | 1.000000099473604e-05 | 10281 | rna-XM_047125358.1 32191403 | 9 | 353411723 | 353422003 | Schistocerca americana 7009 | CAG|GTGAGTGCAC...AGCTCATTATCT/ATGAAGCTCATT...TACAG|ATC | 2 | 1 | 95.264 |
| 179733248 | GT-AG | 0 | 1.000000099473604e-05 | 5869 | rna-XM_047125358.1 32191403 | 10 | 353422144 | 353428012 | Schistocerca americana 7009 | CTG|GTAAGTGCAG...CAAAACTTAATT/CAAAACTTAATT...AATAG|GAA | 1 | 1 | 97.363 |
| 179733249 | GT-AG | 0 | 0.0011887427510787 | 3955 | rna-XM_047125358.1 32191403 | 11 | 353428128 | 353432082 | Schistocerca americana 7009 | CGT|GTATGTACCA...AGATCTTTCTCT/ACTATACTAACA...TGCAG|GAA | 2 | 1 | 99.086 |
| 179750108 | GT-AG | 0 | 1.000000099473604e-05 | 168669 | rna-XM_047125358.1 32191403 | 1 | 352380410 | 352549078 | Schistocerca americana 7009 | CAC|GTGAGTACAC...ATCTTCTTTGTA/ATAATATTAATG...TGCAG|TTT | 0 | 0.809 | |
| 179750109 | GT-AG | 0 | 1.000000099473604e-05 | 170691 | rna-XM_047125358.1 32191403 | 2 | 352549122 | 352719812 | Schistocerca americana 7009 | TTG|GTAAGTACAA...CTGATTTTAAAT/AAGTTTCTGATT...CACAG|GTG | 0 | 1.454 | |
| 179750110 | GT-AG | 0 | 1.000000099473604e-05 | 216098 | rna-XM_047125358.1 32191403 | 3 | 352719884 | 352935981 | Schistocerca americana 7009 | AAG|GTAACACGCA...TGAACTCTAATG/TAAATGCTTACA...TCTAG|GAA | 0 | 2.518 | |
| 179750111 | GT-AG | 0 | 1.000000099473604e-05 | 132411 | rna-XM_047125358.1 32191403 | 4 | 352936016 | 353068426 | Schistocerca americana 7009 | AAG|GTAAGAAAAT...ACTGTGTTGAGT/TGAATATTCACG...TGCAG|GGC | 0 | 3.027 |
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]);