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 = 29501564
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, score, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 164360407 | GT-AG | 0 | 0.1148893140482958 | 665 | rna-XM_014254862.1 29501564 | 1 | 9598537 | 9599201 | Pseudopodoces humilis 181119 | CTT|GTACATTGAG...TTGTCCTTAACA/TCATATTTCATT...AACAG|GAT | 0 | 1 | 11.7 |
| 164360408 | GC-AG | 0 | 1.000000099473604e-05 | 8679 | rna-XM_014254862.1 29501564 | 2 | 9599297 | 9607975 | Pseudopodoces humilis 181119 | AAG|GCAAGTAACT...TCTTCTTTTGCT/ATGTAATTCACA...TACAG|AGC | 2 | 1 | 14.366 |
| 164360409 | GT-AG | 0 | 1.13327955651045e-05 | 1327 | rna-XM_014254862.1 29501564 | 3 | 9608122 | 9609448 | Pseudopodoces humilis 181119 | CAG|GTTTGTCAAT...GTGTTTTTAGCT/CAATTTTTAAAA...TCCAG|TCC | 1 | 1 | 18.462 |
| 164360410 | GT-AG | 0 | 1.000000099473604e-05 | 3366 | rna-XM_014254862.1 29501564 | 4 | 9609555 | 9612920 | Pseudopodoces humilis 181119 | CAG|GTAAGCATTC...ATTTGCTTGTTT/AAAGTAATAATT...TCAAG|AAC | 2 | 1 | 21.437 |
| 164360411 | GT-AG | 0 | 0.0144897176210567 | 9883 | rna-XM_014254862.1 29501564 | 5 | 9613120 | 9623002 | Pseudopodoces humilis 181119 | GAG|GTATATTTTC...AAAACCTCATTT/TCATTTCTGATA...TTCAG|AAT | 0 | 1 | 27.02 |
| 164360412 | GT-AG | 0 | 1.000000099473604e-05 | 3897 | rna-XM_014254862.1 29501564 | 6 | 9625116 | 9629012 | Pseudopodoces humilis 181119 | CTG|GTAAGAGTCA...TTTGGTTTAATT/TTTGGTTTAATT...TTAAG|GTG | 1 | 1 | 86.308 |
| 164360413 | GT-AG | 0 | 1.000000099473604e-05 | 333 | rna-XM_014254862.1 29501564 | 7 | 9629138 | 9629470 | Pseudopodoces humilis 181119 | CAG|GTTAATATAA...GTTACCTTAAAT/ATTATACTTAAA...TATAG|AAT | 0 | 1 | 89.815 |
| 164360414 | GT-AG | 0 | 6.735800108392959e-05 | 524 | rna-XM_014254862.1 29501564 | 8 | 9629559 | 9630082 | Pseudopodoces humilis 181119 | AAG|GTATAGTAAG...GAGCCCTTCTCA/GCCCTTCTCATT...TTCAG|TTT | 1 | 1 | 92.284 |
| 164360415 | GT-AG | 0 | 0.0001072962552523 | 2372 | rna-XM_014254862.1 29501564 | 9 | 9630293 | 9632664 | Pseudopodoces humilis 181119 | ACA|GTAAGTTAGA...TTTGTTTTATAA/TTTTGTTTTATA...TTCAG|ATG | 1 | 1 | 98.176 |
| 164360416 | GT-AG | 0 | 0.0003099518097811 | 2519 | rna-XM_014254862.1 29501564 | 10 | 9632729 | 9635247 | Pseudopodoces humilis 181119 | ATA|GTAAGTATTT...ATCTCTTTATTT/TATCTCTTTATT...TATAG|A | 2 | 1 | 99.972 |
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]);