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 = 34724127
This data as json, CSV (advanced)
Suggested facets: score, length, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 195653445 | GT-AG | 0 | 8.051393784884148e-05 | 210 | rna-XM_010540524.1 34724127 | 1 | 5449221 | 5449430 | Tarenaya hassleriana 28532 | AAG|GTAACTATAT...AGTTAGTTAATG/AGTTAGTTAATG...TTCAG|AAT | 0 | 1 | 16.436 |
| 195653446 | GT-AG | 0 | 1.000000099473604e-05 | 94 | rna-XM_010540524.1 34724127 | 2 | 5449900 | 5449993 | Tarenaya hassleriana 28532 | GTG|GTAATTGTGT...TGCTTCATATTT/TTCATATTTACT...AATAG|ATT | 1 | 1 | 27.233 |
| 195653447 | GT-AG | 0 | 0.0325758071492398 | 103 | rna-XM_010540524.1 34724127 | 3 | 5450080 | 5450182 | Tarenaya hassleriana 28532 | CAG|GTATTTTTTT...GTTTCTTTGGCT/TTTGGCTTCAAT...TGCAG|TCT | 0 | 1 | 29.213 |
| 195653448 | GT-AG | 0 | 1.000000099473604e-05 | 99 | rna-XM_010540524.1 34724127 | 4 | 5450297 | 5450395 | Tarenaya hassleriana 28532 | GCG|GTTAGTTTTC...CTGAGTTTAATT/CTGAGTTTAATT...AGCAG|AAA | 0 | 1 | 31.837 |
| 195653449 | GT-AG | 0 | 1.000000099473604e-05 | 99 | rna-XM_010540524.1 34724127 | 5 | 5450585 | 5450683 | Tarenaya hassleriana 28532 | CAG|GTGAGTATTA...GAGTTTTTATTT/TGAGTTTTTATT...CGAAG|CTT | 0 | 1 | 36.188 |
| 195653450 | GT-AG | 0 | 0.0001414335686162 | 365 | rna-XM_010540524.1 34724127 | 6 | 5452388 | 5452752 | Tarenaya hassleriana 28532 | CAA|GTAAGTTTCT...GGTTCTTTGTCT/TATATATTTATA...TGCAG|CGC | 0 | 1 | 75.414 |
| 195653451 | GT-AG | 0 | 1.000000099473604e-05 | 92 | rna-XM_010540524.1 34724127 | 7 | 5452931 | 5453022 | Tarenaya hassleriana 28532 | GAG|GTGCTCAAGC...ATTTCCCAAACT/ATTTTTGTGAAT...CGCAG|GGG | 1 | 1 | 79.512 |
| 195653452 | GT-AG | 0 | 4.795605808521752e-05 | 147 | rna-XM_010540524.1 34724127 | 8 | 5453253 | 5453399 | Tarenaya hassleriana 28532 | CAG|GTACAATATC...TATCTTTTACTT/GTATCTTTTACT...AACAG|TCA | 0 | 1 | 84.807 |
| 195653453 | GT-AG | 0 | 0.0003013850604257 | 106 | rna-XM_010540524.1 34724127 | 9 | 5453816 | 5453921 | Tarenaya hassleriana 28532 | CAG|GTCTTCCACC...CTTTCTTTACTC/ACTTTCTTTACT...CTCAG|GAA | 2 | 1 | 94.383 |
| 195653454 | GT-AG | 0 | 1.000000099473604e-05 | 159 | rna-XM_010540524.1 34724127 | 10 | 5454078 | 5454236 | Tarenaya hassleriana 28532 | AAG|GTTAGATATT...GTGATTCTAACA/GTGATTCTAACA...TTCAG|GAA | 2 | 1 | 97.974 |
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]);