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)
9 rows where transcript_id = 34091257
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 190849620 | GT-AG | 0 | 2.489435313669809e-05 | 17571 | rna-XM_013244545.1 34091257 | 1 | 3010378 | 3027948 | Stomoxys calcitrans 35570 | AAT|GTAAGTGTGT...ATTTTTTTAATT/ATTTTTTTAATT...TACAG|GTG | 1 | 1 | 9.864 |
| 190849621 | GT-AG | 0 | 1.6005050481933934e-05 | 255 | rna-XM_013244545.1 34091257 | 2 | 3010031 | 3010285 | Stomoxys calcitrans 35570 | TGG|GTAAGTATAT...TCTACTTTAACA/TTTATTTTCAAT...TACAG|AAA | 0 | 1 | 14.165 |
| 190849622 | GT-AG | 0 | 1.000000099473604e-05 | 650 | rna-XM_013244545.1 34091257 | 3 | 3009220 | 3009869 | Stomoxys calcitrans 35570 | CAA|GTAAGTCAGA...AAATTTTTAAAA/AATTTTCTCATT...TCTAG|GGA | 2 | 1 | 21.692 |
| 190849623 | GT-AG | 0 | 1.000000099473604e-05 | 6005 | rna-XM_013244545.1 34091257 | 4 | 3003073 | 3009077 | Stomoxys calcitrans 35570 | TTG|GTAAGTAACG...TTTATTTTAATA/ACTTTTTTCATT...TTCAG|GCC | 0 | 1 | 28.331 |
| 190849624 | GT-AG | 0 | 1.000000099473604e-05 | 1266 | rna-XM_013244545.1 34091257 | 5 | 3001606 | 3002871 | Stomoxys calcitrans 35570 | AGG|GTAAGTAAAT...AATATTTTATCT/GCTTTACTAACT...TTTAG|ATG | 0 | 1 | 37.728 |
| 190849625 | GT-AG | 0 | 1.000000099473604e-05 | 1781 | rna-XM_013244545.1 34091257 | 6 | 2999476 | 3001256 | Stomoxys calcitrans 35570 | AAG|GTAAGAATCT...ATGATCTTATTA/AATGATCTTATT...TTCAG|GTT | 1 | 1 | 54.044 |
| 190849626 | GT-AG | 0 | 4.825847063807992e-05 | 3665 | rna-XM_013244545.1 34091257 | 7 | 2995644 | 2999308 | Stomoxys calcitrans 35570 | CCG|GTAAGTTATT...TTCCTTTTGACT/TTTATTTTAATA...TTCAG|GAA | 0 | 1 | 61.851 |
| 190849627 | GT-AG | 0 | 0.0017844970004571 | 63 | rna-XM_013244545.1 34091257 | 8 | 2995455 | 2995517 | Stomoxys calcitrans 35570 | ATC|GTAAGTTCTC...CATTTTTTAGCA/CGTATTGTTATT...CTTAG|ACC | 0 | 1 | 67.742 |
| 190849628 | GT-AG | 0 | 0.0003979650785046 | 3185 | rna-XM_013244545.1 34091257 | 9 | 2991706 | 2994890 | Stomoxys calcitrans 35570 | AAT|GTAAGTTTTT...TTGCGCTTATCT/GAATTATTAATA...TGCAG|AAC | 0 | 1 | 94.109 |
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]);