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 = 18602176
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 99340263 | GT-AG | 0 | 0.0497237455495454 | 634 | rna-XM_012223804.3 18602176 | 1 | 1621521 | 1622154 | Jatropha curcas 180498 | AAG|GTATGCTCTG...CCAACTTTAATT/TTAATTTTCATT...TTTAG|ATG | 0 | 1 | 33.914 |
| 99340264 | GT-AG | 0 | 0.0002312460105965 | 146 | rna-XM_012223804.3 18602176 | 2 | 1622286 | 1622431 | Jatropha curcas 180498 | GGA|GTAAGTTCTG...ATGCCATTAATT/GTGATTTTCACC...TTCAG|ATT | 2 | 1 | 40.835 |
| 99340265 | GT-AG | 0 | 0.0006418650625449 | 168 | rna-XM_012223804.3 18602176 | 3 | 1622474 | 1622641 | Jatropha curcas 180498 | AAG|GTATGTTTTT...TGCTAGTTGATT/CAACTGCTAATT...TACAG|GGG | 2 | 1 | 43.053 |
| 99340266 | GT-AG | 0 | 1.000000099473604e-05 | 683 | rna-XM_012223804.3 18602176 | 4 | 1622751 | 1623433 | Jatropha curcas 180498 | GAG|GTGATTTATA...GTATTCTTATCT/TGTATTCTTATC...ACCAG|AAT | 0 | 1 | 48.811 |
| 99340267 | GT-AG | 0 | 0.0005630878193687 | 98 | rna-XM_012223804.3 18602176 | 5 | 1623513 | 1623610 | Jatropha curcas 180498 | CAG|GTCTGCCCCT...TTTATCTTAATT/TTTATCTTAATT...TGCAG|ATG | 1 | 1 | 52.985 |
| 99340268 | GT-AG | 0 | 1.000000099473604e-05 | 76 | rna-XM_012223804.3 18602176 | 6 | 1623908 | 1623983 | Jatropha curcas 180498 | TAT|GTGAGTTCTC...CTATTATTGATA/CTATTATTGATA...TACAG|GTC | 1 | 1 | 68.674 |
| 99340269 | GT-AG | 0 | 1.000000099473604e-05 | 551 | rna-XM_012223804.3 18602176 | 7 | 1624097 | 1624647 | Jatropha curcas 180498 | AGG|GTTCGTATAC...AAAATTTTAGTT/TTAGTTCTCACT...TGCAG|GCT | 0 | 1 | 74.643 |
| 99340270 | GT-AG | 0 | 0.0001051014397687 | 77 | rna-XM_012223804.3 18602176 | 8 | 1624756 | 1624832 | Jatropha curcas 180498 | GTG|GTAGGTTGCT...TTTCTTTTACCT/GTTATTCTTATG...GTTAG|GCC | 0 | 1 | 80.349 |
| 99340271 | GT-AG | 0 | 0.0020034783381868 | 92 | rna-XM_012223804.3 18602176 | 9 | 1624896 | 1624987 | Jatropha curcas 180498 | TCT|GTAGGTTCTT...AACCTTTTAAAA/TAATAACTAACA...GGCAG|CTT | 0 | 1 | 83.677 |
| 99340272 | GT-AG | 0 | 0.0001416123883706 | 292 | rna-XM_012223804.3 18602176 | 10 | 1625156 | 1625447 | Jatropha curcas 180498 | TCG|GTATGATTAT...AATTCATTCATT/AATTCATTCATT...TTCAG|GAA | 0 | 1 | 92.552 |
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]);