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 = 15121895
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 81842845 | GT-AG | 0 | 1.000000099473604e-05 | 234 | rna-XM_015413232.1 15121895 | 2 | 616640 | 616873 | Gekko japonicus 146911 | CAA|GTGCTTCAGC...GAAGCCCTATCA/CACATGCGCATC...TGCAG|CGT | 2 | 1 | 15.791 |
| 81842846 | GC-AG | 0 | 0.0035078535634029 | 13983 | rna-XM_015413232.1 15121895 | 3 | 617130 | 631112 | Gekko japonicus 146911 | CCT|GCCCCGCTGA...GCAGCCGTAATC/GCAGCCGTAATC...TGTAG|GGG | 0 | 1 | 22.418 |
| 81842847 | GT-AG | 0 | 2.2264327120674683e-05 | 1103 | rna-XM_015413232.1 15121895 | 4 | 631350 | 632452 | Gekko japonicus 146911 | GAG|GTGTGTATCA...ACTTCTTTAAAA/ATGTGGTTGATT...GCTAG|GTA | 0 | 1 | 28.553 |
| 81842848 | TT-AG | 0 | 1.000000099473604e-05 | 14078 | rna-XM_015413232.1 15121895 | 5 | 633488 | 647565 | Gekko japonicus 146911 | TTG|TTTTAACAGG...CCTACCTTAGAA/ACCTACCTTAGA...TGGAG|CGT | 0 | 1 | 55.346 |
| 81842849 | GT-AG | 0 | 1.000000099473604e-05 | 1166 | rna-XM_015413232.1 15121895 | 6 | 647713 | 648878 | Gekko japonicus 146911 | GCC|GTGAGGACTG...GAGATTTTGGCC/ATGTTGGTAAGG...CCAAG|AAG | 0 | 1 | 59.151 |
| 81842850 | AG-GC | 0 | 51.70571059831973 | 216 | rna-XM_015413232.1 15121895 | 7 | 649420 | 649635 | Gekko japonicus 146911 | GCA|AGAGCTTCAG...GTTCCTGCAGCT/CTGCAGCTGAAT...TTGGC|AGA | 1 | 1 | 73.156 |
| 81842851 | GT-AG | 0 | 1.000000099473604e-05 | 3000 | rna-XM_015413232.1 15121895 | 8 | 649849 | 652848 | Gekko japonicus 146911 | CTG|GTGAGAAGCC...GGGACCTGGAAT/CAAGTGCCAATG...TACAG|CTC | 1 | 1 | 78.669 |
| 81842852 | AT-AC | 0 | 0.6994932600345194 | 8019 | rna-XM_015413232.1 15121895 | 9 | 653043 | 661061 | Gekko japonicus 146911 | TAT|ATCTGCATCT...CTGCTCTGGAGA/AAAGGCAACACT...CAAAC|ATC | 0 | 1 | 83.691 |
| 81842853 | AT-TG | 0 | 7.330322582126135e-05 | 189 | rna-XM_015413232.1 15121895 | 10 | 661354 | 661542 | Gekko japonicus 146911 | CCC|ATCACAAGCG...AGAGTTTCAACC/CAGAGTTTCAAC...CTCTG|ACC | 1 | 1 | 91.25 |
| 81842989 | GT-AG | 0 | 1.000000099473604e-05 | 4918 | rna-XM_015413232.1 15121895 | 1 | 611202 | 616119 | Gekko japonicus 146911 | CAG|GTGCTGGGGA...GGATATTTGAAA/GTGGCTCTCACA...CCCAG|GTG | 0 | 4.09 |
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]);