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 = 38490414
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, is_minor, score, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 213116121 | GT-AG | 0 | 1.000000099473604e-05 | 101 | rna-XM_008666538.4 38490414 | 1 | 229624261 | 229624361 | Zea mays 4577 | AAG|GTGCGCGCAC...TTCCACTTGATT/ATAAGCTTCACT...TTTAG|GGG | 2 | 1 | 9.357 |
| 213116122 | GT-AG | 0 | 4.610979700311753e-05 | 605 | rna-XM_008666538.4 38490414 | 2 | 229623576 | 229624180 | Zea mays 4577 | GTG|GTGAGCTTTT...CATTTCTTGATG/TATGCACTCATT...ATCAG|GTT | 1 | 1 | 10.94 |
| 213116123 | GT-AG | 0 | 0.0001055502673678 | 8694 | rna-XM_008666538.4 38490414 | 3 | 229614700 | 229623393 | Zea mays 4577 | AAG|GTACACAACT...CCATCCTAGATC/CTGTTTGTCATC...TTTAG|GTT | 0 | 1 | 14.54 |
| 213116124 | GT-AG | 0 | 1.223635639328336e-05 | 86 | rna-XM_008666538.4 38490414 | 4 | 229613662 | 229613747 | Zea mays 4577 | TCG|GTAAGATTAA...CTGGCTTTAATT/TAAATACTTACA...TGTAG|GTA | 1 | 1 | 33.373 |
| 213116125 | GT-AG | 0 | 5.67811704099963e-05 | 1141 | rna-XM_008666538.4 38490414 | 5 | 229612393 | 229613533 | Zea mays 4577 | GAG|GTAACTAAAT...TTAAATTTAACC/TTAAATTTAACC...TGTAG|GAG | 0 | 1 | 35.905 |
| 213116126 | GT-AG | 0 | 0.0001103751082986 | 96 | rna-XM_008666538.4 38490414 | 6 | 229612237 | 229612332 | Zea mays 4577 | GTG|GTACTGCTAT...TCCTTTTTAATC/TCCTTTTTAATC...ATCAG|AGG | 0 | 1 | 37.092 |
| 213116127 | GT-AG | 0 | 1.000000099473604e-05 | 109 | rna-XM_008666538.4 38490414 | 7 | 229612077 | 229612185 | Zea mays 4577 | GAT|GTAAGGAAAA...CTATCTTTACTT/TCTTTACTTATA...TTTAG|TGG | 0 | 1 | 38.101 |
| 213116128 | AT-AC | 1 | 99.99999999942048 | 7217 | rna-XM_008666538.4 38490414 | 8 | 229604789 | 229612005 | Zea mays 4577 | AGA|ATATCCTTTT...TGATCCTTGACT/ATATTTATGATC...CATAC|ATT | 2 | 1 | 39.505 |
| 213116129 | GT-AG | 0 | 1.000000099473604e-05 | 91 | rna-XM_008666538.4 38490414 | 9 | 229604552 | 229604642 | Zea mays 4577 | CTG|GTACTAAATC...GTTATATTGAAC/TGCTTGCTGATT...TGCAG|TTG | 1 | 1 | 42.394 |
| 213116130 | GT-AG | 0 | 1.000000099473604e-05 | 80 | rna-XM_008666538.4 38490414 | 10 | 229602648 | 229602727 | Zea mays 4577 | CAG|GTTTAAGATG...GCTTCCTTAAAC/AACTTTTTAACC...TGGAG|CTG | 1 | 1 | 78.477 |
| 213116131 | GT-AG | 0 | 1.000000099473604e-05 | 117 | rna-XM_008666538.4 38490414 | 11 | 229602385 | 229602501 | Zea mays 4577 | CAG|GTAATGTTAT...TTGCCTCTGACA/TTCTAGCTAACA...TTTAG|GTA | 0 | 1 | 81.365 |
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]);