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)
8 rows where transcript_id = 14393919
This data as json, CSV (advanced)
Suggested facets: score, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 76887205 | GT-AG | 0 | 1.000000099473604e-05 | 750 | rna-XM_010154700.1 14393919 | 1 | 101464 | 102213 | Eurypyga helias 54383 | AGG|GTGGGTGGTA...AAGTTTTTATTT/GAAGTTTTTATT...TGTAG|TCG | 2 | 1 | 1.747 |
| 76887206 | GT-AG | 0 | 0.0001299412680155 | 34762 | rna-XM_010154700.1 14393919 | 3 | 115306 | 150067 | Eurypyga helias 54383 | AAA|GTAATTATTT...TTTTTCTTTTCT/CTGGTGCTGATG...TACAG|AGA | 0 | 1 | 28.0 |
| 76887207 | GT-AG | 0 | 7.969799356176259e-05 | 18199 | rna-XM_010154700.1 14393919 | 4 | 150897 | 169095 | Eurypyga helias 54383 | AAG|GTAATTTTTG...TCTTTCTGAATA/CTCTTTCTGAAT...GACAG|CAT | 1 | 1 | 66.115 |
| 76887208 | GT-AG | 0 | 6.843062647454144e-05 | 13268 | rna-XM_010154700.1 14393919 | 5 | 169211 | 182478 | Eurypyga helias 54383 | TTT|GTAAGTATGC...TTTTTTTTTTCT/TTTCAAGTTACT...TGCAG|AGG | 2 | 1 | 71.402 |
| 76887209 | GT-AG | 0 | 5.888263463408607e-05 | 841 | rna-XM_010154700.1 14393919 | 6 | 182565 | 183405 | Eurypyga helias 54383 | CTT|GTAAGTATTC...AACCCATTAAAA/TAAAGCATCATG...CACAG|CTG | 1 | 1 | 75.356 |
| 76887210 | GT-AG | 0 | 1.000000099473604e-05 | 1696 | rna-XM_010154700.1 14393919 | 7 | 183591 | 185286 | Eurypyga helias 54383 | GAG|GTAAGACTTA...GGTACTTTATAA/TGGTACTTTATA...TTCAG|GAT | 0 | 1 | 83.862 |
| 76887211 | GT-AG | 0 | 1.000000099473604e-05 | 10466 | rna-XM_010154700.1 14393919 | 8 | 185366 | 195831 | Eurypyga helias 54383 | TGG|GTAGGTGTGT...TATGTTTCAACC/GGTATTCTCACT...TGTAG|GAG | 1 | 1 | 87.494 |
| 76887212 | GT-AG | 0 | 1.000000099473604e-05 | 14688 | rna-XM_010154700.1 14393919 | 9 | 195954 | 210641 | Eurypyga helias 54383 | ACG|GTGAGTGAAT...TTTTCCTTCCTT/GTTAAAATAATT...TTAAG|GGA | 0 | 1 | 93.103 |
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]);