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 = 38062789
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 210096111 | GT-AG | 0 | 1.000000099473604e-05 | 562 | rna-XM_034833583.1 38062789 | 1 | 3034844 | 3035405 | Vitis riparia 96939 | CTG|GTGGGTTCTG...TTTTCCTTTGCA/GGGGTGCTTATA...TTCAG|GAT | 0 | 1 | 12.717 |
| 210096112 | GT-AG | 0 | 0.0001974086992519 | 96 | rna-XM_034833583.1 38062789 | 2 | 3033402 | 3033497 | Vitis riparia 96939 | TAG|GTACTTCTTT...TCTTTTTTGTTT/CTATTACTAATT...TACAG|AGA | 2 | 1 | 53.766 |
| 210096113 | GT-AG | 0 | 0.0177538738220957 | 606 | rna-XM_034833583.1 38062789 | 3 | 3032614 | 3033219 | Vitis riparia 96939 | AAG|GTACCTAATA...TTATTCTTTATG/TTTATGTTAATT...CCCAG|ATA | 1 | 1 | 59.317 |
| 210096114 | GT-AG | 0 | 1.6460059693413015e-05 | 231 | rna-XM_034833583.1 38062789 | 4 | 3032183 | 3032413 | Vitis riparia 96939 | AAG|GTGTGTCTGT...TTTATTTTATCA/TTTTATTTTATC...TGCAG|AGT | 0 | 1 | 65.416 |
| 210096115 | GT-AG | 0 | 8.081462545358054e-05 | 1090 | rna-XM_034833583.1 38062789 | 5 | 3031024 | 3032113 | Vitis riparia 96939 | TCG|GTACGTGTCC...TCATGCTTGACC/CTTGACCTGATT...TTCAG|GGA | 0 | 1 | 67.521 |
| 210096116 | GT-AG | 0 | 2.601715704752622e-05 | 2314 | rna-XM_034833583.1 38062789 | 6 | 3028637 | 3030950 | Vitis riparia 96939 | ATA|GTCAGTATTT...ATTACCTTAATT/TGTCTTCTAATG...TTCAG|GTC | 1 | 1 | 69.747 |
| 210096117 | GT-AG | 0 | 1.000000099473604e-05 | 314 | rna-XM_034833583.1 38062789 | 7 | 3028166 | 3028479 | Vitis riparia 96939 | AAT|GTGAGTGGCC...CTGCTCTAAACT/TCTGCTCTAAAC...TGCAG|GTA | 2 | 1 | 74.535 |
| 210096118 | GT-AG | 0 | 7.806083499046454e-05 | 104 | rna-XM_034833583.1 38062789 | 8 | 3027770 | 3027873 | Vitis riparia 96939 | CTG|GTAGGTTTTA...TGAATTTTACCA/CATATATTCATT...TTCAG|GTA | 0 | 1 | 83.44 |
| 210096119 | GT-AG | 0 | 4.55613109877527e-05 | 143 | rna-XM_034833583.1 38062789 | 9 | 3027512 | 3027654 | Vitis riparia 96939 | TAA|GTAAGTCCCA...TGTCTCTTAAAT/TAGTCTCTAATT...TGCAG|TTC | 1 | 1 | 86.947 |
| 210096120 | GT-AG | 0 | 1.000000099473604e-05 | 217 | rna-XM_034833583.1 38062789 | 10 | 3027131 | 3027347 | Vitis riparia 96939 | AAG|GTTAGAGTTT...ATTGTTTTGAAT/TCTTCTCTAATT...TACAG|GGA | 0 | 1 | 91.949 |
| 210096121 | GT-AG | 0 | 1.000000099473604e-05 | 156 | rna-XM_034833583.1 38062789 | 11 | 3026900 | 3027055 | Vitis riparia 96939 | AAG|GTAGGATTTG...GAACTTTTACTT/TGAACTTTTACT...TGCAG|ACA | 0 | 1 | 94.236 |
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]);