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 = 22773436
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 123544459 | GT-AG | 0 | 0.0004841567221423 | 446 | Myper.0001s0399.1.v2.1 22773436 | 1 | 2888625 | 2889070 | Myagrum perfoliatum 359867 | AAG|GTTTATTCCG...TTGGCCTTGGTC/ATTAGAGTGACA...TGCAG|ATA | 1 | 1 | 1.61 |
| 123544460 | GT-AG | 0 | 0.0015122311917174 | 74 | Myper.0001s0399.1.v2.1 22773436 | 2 | 2889160 | 2889233 | Myagrum perfoliatum 359867 | GTG|GTATGTTCAT...CTGGTTTTACTT/TTTGTGTTCATG...TACAG|GAA | 0 | 1 | 3.357 |
| 123544461 | GT-AG | 0 | 1.000000099473604e-05 | 79 | Myper.0001s0399.1.v2.1 22773436 | 3 | 2890152 | 2890230 | Myagrum perfoliatum 359867 | GTG|GTCAGTGTTC...AGTATCTTACTT/ACTTTTCTGATC...AATAG|ACT | 0 | 1 | 21.378 |
| 123544462 | GT-AG | 0 | 1.000000099473604e-05 | 89 | Myper.0001s0399.1.v2.1 22773436 | 4 | 2890352 | 2890440 | Myagrum perfoliatum 359867 | CTG|GTAAGAACTG...TTTTTTTTTGTA/TTGTATGTGATA...TGCAG|CTG | 1 | 1 | 23.753 |
| 123544463 | GT-AG | 0 | 0.0002583734858874 | 249 | Myper.0001s0399.1.v2.1 22773436 | 5 | 2890537 | 2890785 | Myagrum perfoliatum 359867 | AAG|GTATGTGTTG...CTGTCCGTATTA/TAGCCTCTCATA...TGCAG|CTT | 1 | 1 | 25.638 |
| 123544464 | GT-AG | 0 | 0.0001059174799164 | 112 | Myper.0001s0399.1.v2.1 22773436 | 6 | 2891527 | 2891638 | Myagrum perfoliatum 359867 | AAG|GTAGTCTTGG...CTAACTTCATTC/ACTAACTTCATT...TTCAG|GTG | 1 | 1 | 40.185 |
| 123544465 | GT-AG | 0 | 0.0009786617284987 | 149 | Myper.0001s0399.1.v2.1 22773436 | 7 | 2894073 | 2894221 | Myagrum perfoliatum 359867 | ACA|GTATGAATCT...TATTTGTTGATG/TATTTGTTGATG...CACAG|GGG | 2 | 1 | 87.966 |
| 123544466 | GT-AG | 0 | 0.0001095783731114 | 72 | Myper.0001s0399.1.v2.1 22773436 | 8 | 2894395 | 2894466 | Myagrum perfoliatum 359867 | CAG|GTTTGCATTT...TGGTCTTTTTCT/CTTTTTCTCATG...CACAG|AGG | 1 | 1 | 91.362 |
| 123544467 | GT-AG | 0 | 1.000000099473604e-05 | 154 | Myper.0001s0399.1.v2.1 22773436 | 9 | 2894527 | 2894680 | Myagrum perfoliatum 359867 | AAG|GTAAAAAGAA...TGGTTTGTGATG/TGGTTTGTGATG...GTCAG|ATA | 1 | 1 | 92.54 |
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]);