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)
11 rows where transcript_id = 14424041
This data as json, CSV (advanced)
Suggested facets: score, length, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 77101692 | GT-AG | 0 | 1.13901265736383e-05 | 166 | rna-XM_006412312.2 14424041 | 2 | 2820189 | 2820354 | Eutrema salsugineum 72664 | CAG|GTAATTTCTT...TTGCTCTTTTTT/CGTAGTATGATG...GGTAG|TGG | 2 | 1 | 13.784 |
| 77101693 | GT-AG | 0 | 1.000000099473604e-05 | 662 | rna-XM_006412312.2 14424041 | 3 | 2821078 | 2821739 | Eutrema salsugineum 72664 | GAG|GTGAATTTTG...ATCTCTTCAGTA/TCAGTACTGATT...CTTAG|TCT | 2 | 1 | 27.16 |
| 77101694 | GT-AG | 0 | 0.0001900623511015 | 148 | rna-XM_006412312.2 14424041 | 4 | 2821894 | 2822041 | Eutrema salsugineum 72664 | CAG|GTATGTATCC...TCTGCATTATTG/CTCTGCATTATT...TTCAG|GAA | 0 | 1 | 30.009 |
| 77101695 | GT-AG | 0 | 0.0001694667621287 | 111 | rna-XM_006412312.2 14424041 | 5 | 2822387 | 2822497 | Eutrema salsugineum 72664 | ACA|GTAAGTTCCA...TTTTTTTTTTCT/ATATATCTGATC...TTCAG|ATA | 0 | 1 | 36.392 |
| 77101696 | GT-AG | 0 | 0.0971245326682866 | 359 | rna-XM_006412312.2 14424041 | 6 | 2823284 | 2823642 | Eutrema salsugineum 72664 | CAG|GTACCTTTCA...CTTGCATTATTC/CTGGTTGTAAAT...TTTAG|GAT | 0 | 1 | 50.934 |
| 77101697 | GT-AG | 0 | 1.5127188325449998e-05 | 337 | rna-XM_006412312.2 14424041 | 7 | 2823972 | 2824308 | Eutrema salsugineum 72664 | TGG|GTATGAATAG...ATTATCTGATAT/TATGTACTGATT...TGCAG|TTT | 2 | 1 | 57.021 |
| 77101698 | GT-AG | 0 | 1.000000099473604e-05 | 95 | rna-XM_006412312.2 14424041 | 8 | 2824433 | 2824527 | Eutrema salsugineum 72664 | GAG|GTTACAAGTT...GGAGTCTTATTT/TCTTATTTTACT...AATAG|GTG | 0 | 1 | 59.315 |
| 77101699 | GT-AG | 0 | 0.0214062026321491 | 341 | rna-XM_006412312.2 14424041 | 9 | 2824693 | 2825033 | Eutrema salsugineum 72664 | AAG|GTAGCCTGTC...TTGCCCCTATAC/GCAATACTGATT...TTCAG|GAA | 0 | 1 | 62.368 |
| 77101700 | GT-AG | 0 | 0.0001238319337054 | 191 | rna-XM_006412312.2 14424041 | 10 | 2826459 | 2826649 | Eutrema salsugineum 72664 | CAG|GTACCAAAAA...ATTTTGTTGACA/ATTTTGTTGACA...TAAAG|GTC | 0 | 1 | 88.733 |
| 77101701 | GT-AG | 0 | 0.0007263959643027 | 86 | rna-XM_006412312.2 14424041 | 11 | 2826917 | 2827002 | Eutrema salsugineum 72664 | GCT|GTAAGTTTCC...CTTGCTTTGTTT/TTGGGACTTACA...TGAAG|TCG | 0 | 1 | 93.673 |
| 77114412 | GT-AG | 0 | 0.3797578597330286 | 341 | rna-XM_006412312.2 14424041 | 1 | 2818891 | 2819231 | Eutrema salsugineum 72664 | TAT|GTAACCATTC...GTTTCTTTCTTT/CAAAAATTAAAA...TTTAG|CAT | 0 | 2.479 |
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]);