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 = 7346942
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 38393354 | GT-AG | 0 | 2.646799910358349e-05 | 216 | Ceric.01G007100.1.v2.1 7346942 | 1 | 16868567 | 16868782 | Ceratopteris richardii 49495 | AAC|GTAAGTCTTC...ATTATCTCAACT/AAGTTACTGACT...TGCAG|GTC | 0 | 1 | 45.383 |
| 38393355 | GT-AG | 0 | 0.0001269055383001 | 107 | Ceric.01G007100.1.v2.1 7346942 | 2 | 16869104 | 16869210 | Ceratopteris richardii 49495 | AAG|GTTGCTTATT...CTCTCTTTCACA/CTCTCTTTCACA...TGTAG|GAT | 0 | 1 | 52.441 |
| 38393356 | GT-AG | 0 | 1.000000099473604e-05 | 369 | Ceric.01G007100.1.v2.1 7346942 | 3 | 16869298 | 16869666 | Ceratopteris richardii 49495 | CTG|GTAAGGCTCG...TTTTTCTTTTTT/TTTTTTTCTAGC...GACAG|GTT | 0 | 1 | 54.354 |
| 38393357 | GT-AG | 0 | 1.000000099473604e-05 | 140 | Ceric.01G007100.1.v2.1 7346942 | 4 | 16870357 | 16870496 | Ceratopteris richardii 49495 | AGG|GTAATGGTGC...ACTTCTCTAATT/ACTTCTCTAATT...TCTAG|TCT | 0 | 1 | 69.525 |
| 38393358 | GT-AG | 0 | 0.0001070711973972 | 153 | Ceric.01G007100.1.v2.1 7346942 | 5 | 16870662 | 16870814 | Ceratopteris richardii 49495 | CAA|GTAAGTTTCA...TACATCTGAATG/TGTGTTTTCATG...TGCAG|ACA | 0 | 1 | 73.153 |
| 38393359 | GT-AG | 0 | 0.1911112232824694 | 82 | Ceric.01G007100.1.v2.1 7346942 | 6 | 16871110 | 16871191 | Ceratopteris richardii 49495 | CAT|GTATTTTCAC...TGTTTTTTGACC/TGTTTTTTGACC...TTCAG|CTT | 1 | 1 | 79.639 |
| 38393360 | GT-AG | 0 | 0.0012276323694617 | 1773 | Ceric.01G007100.1.v2.1 7346942 | 7 | 16871407 | 16873179 | Ceratopteris richardii 49495 | AAA|GTATGTACGT...TCTGCTTTACTC/ATCTGCTTTACT...GACAG|GCT | 0 | 1 | 84.367 |
| 38393361 | GT-AG | 0 | 1.000000099473604e-05 | 82 | Ceric.01G007100.1.v2.1 7346942 | 8 | 16873486 | 16873567 | Ceratopteris richardii 49495 | GAG|GTCAGCTTCA...AGATATTTAGCT/AAGATATTTAGC...TGCAG|GGT | 0 | 1 | 91.095 |
| 38393362 | GT-AG | 0 | 1.000000099473604e-05 | 185 | Ceric.01G007100.1.v2.1 7346942 | 9 | 16873632 | 16873816 | Ceratopteris richardii 49495 | TTG|GTAAGAACCT...CTCTCTCTACAT/TCTCTACATATT...CACAG|TTC | 1 | 1 | 92.502 |
| 38393363 | GT-AG | 0 | 0.0010818311489182 | 25548 | Ceric.01G007100.1.v2.1 7346942 | 10 | 16874057 | 16899604 | Ceratopteris richardii 49495 | CAG|GTATGTTTGT...TCATCCCTACTC/AATGTAATCATC...TTTAG|GTT | 1 | 1 | 97.779 |
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]);