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 = 13349307
This data as json, CSV (advanced)
Suggested facets: length, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 71011157 | GT-AG | 0 | 0.0267580473493022 | 189 | mRNA_1100 13349307 | 1 | 94031109 | 94031297 | Entomophaga maimaiga 42810 | ATT|GTACCATAAA...CATAGCTTACCG/CGGTGACCCACC...TACAG|CAT | 2 | 1 | 2.055 |
| 71011158 | GT-AG | 0 | 0.0400076952329652 | 174 | mRNA_1100 13349307 | 2 | 94030841 | 94031014 | Entomophaga maimaiga 42810 | CAT|GTGCCTCTTT...TTCTCCTTGTCT/TGTCTCCTCAAG...ACAAG|ACG | 0 | 1 | 5.329 |
| 71011159 | GT-AG | 0 | 0.0045477371346629 | 279 | mRNA_1100 13349307 | 3 | 94030479 | 94030757 | Entomophaga maimaiga 42810 | CAA|GTCCCTATAA...CAAGCCTTCACT/CAAGCCTTCACT...TAGAG|CAT | 2 | 1 | 8.22 |
| 71011160 | GT-AG | 0 | 0.025900627304542 | 33 | mRNA_1100 13349307 | 4 | 94030297 | 94030329 | Entomophaga maimaiga 42810 | CTT|GTGCCCATCC...CCTCCCAGAATG/TTGCCTCCCAGA...ATAAG|CTT | 1 | 1 | 13.41 |
| 71011161 | GT-AG | 0 | 1.243028246624386 | 51 | mRNA_1100 13349307 | 5 | 94030133 | 94030183 | Entomophaga maimaiga 42810 | CCT|GTTTCTTGTT...GAGACCCTATAG/CCTATAGGAACC...CTGAG|CTC | 0 | 1 | 17.346 |
| 71011162 | GT-AG | 0 | 1.000000099473604e-05 | 38 | mRNA_1100 13349307 | 6 | 94029915 | 94029952 | Entomophaga maimaiga 42810 | GGA|GTGCGTTGAT...GTTCTATGGATT/GTTCTATGGATT...CCTAG|ATT | 0 | 1 | 23.615 |
| 71011163 | GT-AG | 0 | 4.665244713172463e-05 | 33 | mRNA_1100 13349307 | 8 | 94029499 | 94029531 | Entomophaga maimaiga 42810 | TAG|GTGACATTTG...CGGCCTTTATCA/GCGGCCTTTATC...GCAAG|AGT | 1 | 1 | 36.085 |
| 71011164 | GT-AG | 0 | 0.0408320583761228 | 57 | mRNA_1100 13349307 | 9 | 94029134 | 94029190 | Entomophaga maimaiga 42810 | GGG|GTAGCTTTTG...ATTTGCTAAGCC/CATTTGCTAAGC...CCCAG|CAG | 0 | 1 | 46.813 |
| 71011165 | GT-AG | 0 | 0.0028935215488157 | 39 | mRNA_1100 13349307 | 10 | 94028012 | 94028050 | Entomophaga maimaiga 42810 | GAG|GTTCCCTCAG...GACGCCATGGCC/CATGGCCCAACC...CTGAG|CCC | 0 | 1 | 84.535 |
| 71011166 | GT-AG | 0 | 0.03823926683721 | 120 | mRNA_1100 13349307 | 11 | 94027816 | 94027935 | Entomophaga maimaiga 42810 | ACG|GTCCCCCTTA...ATTCCATTAAAA/CTGAGCCTAATT...CATAG|CTT | 1 | 1 | 87.182 |
| 71011167 | GT-AG | 0 | 0.0493675165597073 | 36 | mRNA_1100 13349307 | 12 | 94027611 | 94027646 | Entomophaga maimaiga 42810 | CAT|GTGCCTCTTT...TTTTTCTTCGCT/TCGCTAGAAACA...CCTAG|AAA | 2 | 1 | 93.069 |
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]);