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 = 38228151
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 211079910 | GT-AG | 0 | 1.2932600142425965e-05 | 485 | rna-XM_046983332.1 38228151 | 1 | 2534255 | 2534739 | Xenia sp. carnegie-2017 2897299 | TAG|GTAAGTATTT...TTTTCTTTATAC/GTTTGTTTAATT...TGCAG|ACT | 1 | 1 | 2.064 |
| 211079911 | GT-AG | 0 | 1.3316048904787549e-05 | 3506 | rna-XM_046983332.1 38228151 | 2 | 2530697 | 2534202 | Xenia sp. carnegie-2017 2897299 | CAG|GTAAACATAG...AAAATTTTATTA/ATTTTATTAAAT...TATAG|CAA | 2 | 1 | 3.824 |
| 211079912 | GT-AG | 0 | 2.0355806775960543e-05 | 728 | rna-XM_046983332.1 38228151 | 3 | 2529580 | 2530307 | Xenia sp. carnegie-2017 2897299 | CAA|GTAAGTACTA...TACTTTTTATCT/TTTTATCTGATA...TTTAG|TTG | 1 | 1 | 16.988 |
| 211079913 | GT-AG | 0 | 1.000000099473604e-05 | 114 | rna-XM_046983332.1 38228151 | 4 | 2529163 | 2529276 | Xenia sp. carnegie-2017 2897299 | CCA|GTAAGAAAAA...TCTTTCTTATTC/TTCTTTCTTATT...TACAG|GTG | 1 | 1 | 27.242 |
| 211079914 | GT-AG | 0 | 1.000000099473604e-05 | 166 | rna-XM_046983332.1 38228151 | 5 | 2528969 | 2529134 | Xenia sp. carnegie-2017 2897299 | AAG|GTACAATAAT...AGGATTTTACCT/TGAATTTTCACT...TGCAG|TTG | 2 | 1 | 28.19 |
| 211079915 | GT-AG | 0 | 1.000000099473604e-05 | 120 | rna-XM_046983332.1 38228151 | 6 | 2528508 | 2528627 | Xenia sp. carnegie-2017 2897299 | AAG|GTAATTGAGA...TATTTTTTATTT/ATATTTTTTATT...AACAG|TAG | 1 | 1 | 39.729 |
| 211079916 | GT-AG | 0 | 3.654629474633589e-05 | 173 | rna-XM_046983332.1 38228151 | 7 | 2528313 | 2528485 | Xenia sp. carnegie-2017 2897299 | CAA|GTAAGTTAAC...TTTTTCTTGTTT/GTTGTTTTCAGA...ACCAG|ATG | 2 | 1 | 40.474 |
| 211079917 | GT-AG | 0 | 1.000000099473604e-05 | 677 | rna-XM_046983332.1 38228151 | 8 | 2527217 | 2527893 | Xenia sp. carnegie-2017 2897299 | ATG|GTGAGTTGAT...AGGCTCTTGACA/AATTTCTTTATT...TTCAG|ATT | 1 | 1 | 54.653 |
| 211079918 | GT-AG | 0 | 0.0012839356063996 | 375 | rna-XM_046983332.1 38228151 | 9 | 2526614 | 2526988 | Xenia sp. carnegie-2017 2897299 | CAT|GTAAGCTAAC...ATATTCTTATTT/AATATTCTTATT...TCTAG|CTC | 1 | 1 | 62.369 |
| 211079919 | GT-AG | 0 | 1.000000099473604e-05 | 324 | rna-XM_046983332.1 38228151 | 10 | 2526048 | 2526371 | Xenia sp. carnegie-2017 2897299 | GAA|GTAAGTGCAA...GTATTTTTAAAA/CATTAACTTACA...TTCAG|AAA | 0 | 1 | 70.558 |
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]);