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 = 35056031
This data as json, CSV (advanced)
Suggested facets: is_minor, score, length, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 197323889 | GT-AG | 0 | 7.016629900995844e-05 | 65 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 1 | 95847 | 95911 | Thamnocephalis sphaerospora 78915 | TTG|GTATGTACCG...ACAGTTGTGACA/CATACACTCATG...TGCAG|GCT | 1 | 1 | 7.976 |
| 197323890 | GT-AG | 0 | 1.000000099473604e-05 | 64 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 2 | 95696 | 95759 | Thamnocephalis sphaerospora 78915 | AAG|GTATGGGCGC...GCGGTTTTATAG/TGCGGTTTTATA...GTTAG|GAA | 1 | 1 | 18.333 |
| 197323891 | GT-AG | 0 | 1.000000099473604e-05 | 52 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 3 | 95585 | 95636 | Thamnocephalis sphaerospora 78915 | GAG|GTGCGTGCAC...CAATCCATAGCA/CAGCGTCTAACT...CATAG|GTC | 0 | 1 | 25.357 |
| 197323892 | GT-AG | 0 | 1.000000099473604e-05 | 61 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 4 | 95496 | 95556 | Thamnocephalis sphaerospora 78915 | TCG|GTGGGTAGAA...GTCGCCGTGACT/TCTGCTCTAAGT...TGCAG|ATA | 1 | 1 | 28.69 |
| 197323893 | GT-AG | 0 | 1.428859699331074e-05 | 71 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 5 | 95221 | 95291 | Thamnocephalis sphaerospora 78915 | CCG|GTTCGTTTGG...ATATGCTTGAAG/TGAAGGCTAACT...TATAG|GCG | 1 | 1 | 52.976 |
| 197323894 | GT-AG | 1 | 90.20865986932964 | 80 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 6 | 95050 | 95129 | Thamnocephalis sphaerospora 78915 | GGT|GTATCCTGGG...TGCCTTTTATCT/TTTTATCTGACA...ACCAG|AGG | 2 | 1 | 63.81 |
| 197323895 | GT-AG | 0 | 1.000000099473604e-05 | 55 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 7 | 94939 | 94993 | Thamnocephalis sphaerospora 78915 | AAA|GTGAGTAGGT...GTCGAATTAACA/GTCGAATTAACA...TGCAG|ATA | 1 | 1 | 70.476 |
| 197323896 | GT-AG | 0 | 0.0017899343258914 | 62 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 8 | 94820 | 94881 | Thamnocephalis sphaerospora 78915 | CGG|GTATGCTATG...TGACTGTCAGCT/CAGCTGCTCACA...TACAG|AGG | 1 | 1 | 77.262 |
| 197323897 | GT-AG | 0 | 1.000000099473604e-05 | 61 | rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27114 35056031 | 9 | 94625 | 94685 | Thamnocephalis sphaerospora 78915 | AAG|GTACGCGCTT...TTGGCCGTACGT/CGCCGGCTAACC...TATAG|GAC | 0 | 1 | 93.214 |
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]);