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 = 32241316
This data as json, CSV (advanced)
Suggested facets: phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 180024243 | GT-AG | 0 | 0.0482340328269643 | 34 | rna-XM_035733904.1 32241316 | 1 | 1116974 | 1117007 | Schistosoma haematobium 6185 | CAA|GTAGCTTCAT...CATACATTAACT/CATTAACTTACA...TCTAG|TCG | 1 | 1 | 4.356 |
| 180024244 | GT-AG | 0 | 2.39847881129014e-05 | 39 | rna-XM_035733904.1 32241316 | 2 | 1117087 | 1117125 | Schistosoma haematobium 6185 | TCA|GTAAGTTCTT...GATGTGTGGATG/TGTGGATGTACA...TTCAG|AGG | 2 | 1 | 11.378 |
| 180024245 | GT-AG | 0 | 1.000000099473604e-05 | 2113 | rna-XM_035733904.1 32241316 | 3 | 1117229 | 1119341 | Schistosoma haematobium 6185 | ATG|GTAAGTGGGC...TTTTTCTTATTC/GTTTTTCTTATT...TACAG|AAT | 0 | 1 | 20.533 |
| 180024246 | GT-AG | 0 | 0.0178462379841778 | 2284 | rna-XM_035733904.1 32241316 | 4 | 1119440 | 1121723 | Schistosoma haematobium 6185 | GAC|GTACGTTTGT...ATTATTTTGATT/TTCTTTCTCATT...TAAAG|CAT | 2 | 1 | 29.244 |
| 180024247 | GT-AG | 0 | 0.0010760312224589 | 4017 | rna-XM_035733904.1 32241316 | 5 | 1121923 | 1125939 | Schistosoma haematobium 6185 | CGT|GTAAGTTAGT...CTTTCCTTAATG/TTCTCTTTCATA...TACAG|AGT | 0 | 1 | 46.933 |
| 180024248 | GT-AG | 0 | 3.533921413135522e-05 | 1746 | rna-XM_035733904.1 32241316 | 6 | 1126090 | 1127835 | Schistosoma haematobium 6185 | AAT|GTAAGTTAAG...ATATTCTTACTA/CATATTCTTACT...TCAAG|GAG | 0 | 1 | 60.267 |
| 180024249 | GT-AG | 0 | 9.777488558534827e-05 | 2319 | rna-XM_035733904.1 32241316 | 7 | 1127994 | 1130312 | Schistosoma haematobium 6185 | AAA|GTAAGTCTAA...TCTTTCTTGATT/TGATTTTTCACC...TTTAG|AAT | 2 | 1 | 74.311 |
| 180024250 | GT-AG | 0 | 5.414485936940072e-05 | 1297 | rna-XM_035733904.1 32241316 | 8 | 1130415 | 1131711 | Schistosoma haematobium 6185 | ACA|GTAAGTTCAT...TTTTTCTTTCCA/TAAACATTTATG...TGTAG|AAT | 2 | 1 | 83.378 |
| 180024251 | GT-AG | 0 | 3.449356979690149e-05 | 1906 | rna-XM_035733904.1 32241316 | 9 | 1131826 | 1133731 | Schistosoma haematobium 6185 | TTG|GTAAGCATAT...ATTGTTTTATTT/AATTGTTTTATT...TACAG|GGA | 2 | 1 | 93.511 |
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]);