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 = 19533925
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 104745076 | GT-AG | 0 | 0.0006428294530666 | 2106 | rna-XM_009953753.1 19533925 | 1 | 6157 | 8262 | Leptosomus discolor 188344 | AAG|GTAACATTAA...TTTTCTTTTTCT/GTATTTCTAACT...GCCAG|CTA | 1 | 1 | 7.225 |
| 104745077 | GT-AG | 0 | 1.000000099473604e-05 | 2897 | rna-XM_009953753.1 19533925 | 2 | 8356 | 11252 | Leptosomus discolor 188344 | AAG|GTTTGTGCGC...ATTCCAATGACT/CCAGCACTCACT...TGCAG|ATC | 1 | 1 | 13.171 |
| 104745078 | GT-AG | 0 | 1.000000099473604e-05 | 3784 | rna-XM_009953753.1 19533925 | 3 | 11373 | 15156 | Leptosomus discolor 188344 | CAA|GTAAGTAATA...CTCTTTTTATTA/TCTCTTTTTATT...TTCAG|GTT | 1 | 1 | 20.844 |
| 104745079 | GT-AG | 0 | 0.0008597162030223 | 3061 | rna-XM_009953753.1 19533925 | 4 | 15277 | 18337 | Leptosomus discolor 188344 | TTG|GTATGGTTAG...TTTACCTTCTCA/ATGGATCTGACC...TGTAG|ACA | 1 | 1 | 28.517 |
| 104745080 | GT-AG | 0 | 1.000000099473604e-05 | 1739 | rna-XM_009953753.1 19533925 | 5 | 18473 | 20211 | Leptosomus discolor 188344 | CAG|GTAAGATTTA...AGCATTTTAATC/GCAGTTTTCACT...CTTAG|ATG | 1 | 1 | 37.148 |
| 104745081 | GT-AG | 0 | 1.000000099473604e-05 | 7745 | rna-XM_009953753.1 19533925 | 6 | 20335 | 28079 | Leptosomus discolor 188344 | CTG|GTGAGTACCA...GAATATTTAATA/TCATTGCTGAAT...TCTAG|TTA | 1 | 1 | 45.013 |
| 104745082 | GT-AG | 0 | 0.0007550857382712 | 10966 | rna-XM_009953753.1 19533925 | 7 | 28410 | 39375 | Leptosomus discolor 188344 | TTT|GTAAGTTTCT...CAGCACTTGACA/TCTGTTCTCATG...CCTAG|TTC | 1 | 1 | 66.113 |
| 104745083 | GT-AG | 0 | 0.0001096857240307 | 1942 | rna-XM_009953753.1 19533925 | 8 | 39457 | 41398 | Leptosomus discolor 188344 | AAG|GTAGATTATT...CCCCTCTTATCT/TTATCTCTGAGC...TTCAG|TCG | 1 | 1 | 71.292 |
| 104745084 | GT-AG | 0 | 0.0004243447477417 | 1373 | rna-XM_009953753.1 19533925 | 9 | 41486 | 42858 | Leptosomus discolor 188344 | GAG|GTATTTAAAT...TTTTCCTTTTTT/CACAAACTTATT...ACAAG|GCG | 1 | 1 | 76.854 |
| 104745085 | GT-AG | 0 | 1.000000099473604e-05 | 863 | rna-XM_009953753.1 19533925 | 10 | 43125 | 43987 | Leptosomus discolor 188344 | AGT|GTGAGTATAA...TATGTCTTTTCT/TACATTTTCACT...GACAG|GTC | 0 | 1 | 93.862 |
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]);