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 = 15121863
This data as json, CSV (advanced)
Suggested facets: is_minor, score, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 81842472 | GT-AG | 0 | 1.000000099473604e-05 | 3808 | rna-XM_015409376.1 15121863 | 1 | 1744222 | 1748029 | Gekko japonicus 146911 | CAG|GTACTTGGGG...AGTGACTTACAC/CCTATGCTGATT...TCCAG|GTC | 1 | 1 | 13.14 |
| 81842473 | GT-AG | 0 | 1.000000099473604e-05 | 2709 | rna-XM_015409376.1 15121863 | 2 | 1748066 | 1750774 | Gekko japonicus 146911 | TTG|GTAAGTAAGG...TCTCTTTTACCT/CTCTCTTTTACC...CTTAG|TGT | 1 | 1 | 16.618 |
| 81842474 | GT-AG | 0 | 1.000000099473604e-05 | 476 | rna-XM_015409376.1 15121863 | 3 | 1750852 | 1751327 | Gekko japonicus 146911 | GTG|GTAAGAATCC...TGTCTCTTGCTT/AGCCAGCTCAGA...TGCAG|TCA | 0 | 1 | 24.058 |
| 81842475 | GT-AG | 0 | 1.000000099473604e-05 | 1145 | rna-XM_015409376.1 15121863 | 4 | 1751462 | 1752606 | Gekko japonicus 146911 | CAA|GTAAGTACTC...TTTGCTCTACCC/TTTCAGCTCACG...CACAG|AGC | 2 | 1 | 37.005 |
| 81842476 | GT-AG | 0 | 1.000000099473604e-05 | 1180 | rna-XM_015409376.1 15121863 | 5 | 1752708 | 1753887 | Gekko japonicus 146911 | GAG|GTGAGTCACA...TAGTCTTTGGTC/TTTGGTCTAATA...GACAG|ACA | 1 | 1 | 46.763 |
| 81842477 | GT-AG | 0 | 0.0001279253719852 | 533 | rna-XM_015409376.1 15121863 | 6 | 1753969 | 1754501 | Gekko japonicus 146911 | GCA|GTAAGTATTT...GTGTGCTTACCT/AGTGTGCTTACC...TTCAG|CCC | 1 | 1 | 54.589 |
| 81842478 | GT-AG | 1 | 98.69991486870894 | 292 | rna-XM_015409376.1 15121863 | 7 | 1754655 | 1754946 | Gekko japonicus 146911 | ACT|GTATCCTGCT...AATTCCTTAACC/AATTTTCTCATT...CTTAG|TAC | 1 | 1 | 69.372 |
| 81842479 | GT-AG | 0 | 1.000000099473604e-05 | 769 | rna-XM_015409376.1 15121863 | 8 | 1755020 | 1755788 | Gekko japonicus 146911 | AAG|GTCAGTTTGG...TGCTTTATGACT/TGCTTTATGACT...TGCAG|CTT | 2 | 1 | 76.425 |
| 81842480 | GT-AG | 0 | 1.000000099473604e-05 | 236 | rna-XM_015409376.1 15121863 | 9 | 1755909 | 1756144 | Gekko japonicus 146911 | AGA|GTAAGGATGC...CCTGTTTTATCT/GCCTGTTTTATC...CTTAG|GGG | 2 | 1 | 88.019 |
| 81842481 | GT-AG | 0 | 1.000000099473604e-05 | 1084 | rna-XM_015409376.1 15121863 | 10 | 1756210 | 1757293 | Gekko japonicus 146911 | CAC|GTAAGTAGGT...TACATGTTACTG/TCTACACTCACT...TTCAG|GGC | 1 | 1 | 94.3 |
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]);