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 = 35062871
This data as json, CSV (advanced)
Suggested facets: dinucleotide_pair, score, phase, in_cds
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 197351490 | GT-AG | 0 | 0.0096803667915032 | 996 | rna-XM_032217382.1 35062871 | 4 | 63536111 | 63537106 | Thamnophis elegans 35005 | CAG|GTATGTTGTA...TGCTTTTTAATA/AAAATTTTAACT...CCCAG|AGG | 1 | 1 | 9.201 |
| 197351491 | GT-AG | 0 | 1.000000099473604e-05 | 88 | rna-XM_032217382.1 35062871 | 5 | 63535933 | 63536020 | Thamnophis elegans 35005 | GTG|GTGAGTTTTT...TAAAACTTACCT/CGGGTTCTCATT...TTCAG|GAG | 1 | 1 | 10.721 |
| 197351492 | GT-AG | 0 | 0.0026323279129219 | 1967 | rna-XM_032217382.1 35062871 | 6 | 63533444 | 63535410 | Thamnophis elegans 35005 | CAG|GTAACCATAC...TTTCCTGTAATG/CCACTTTTCATT...TGCAG|GAA | 1 | 1 | 19.534 |
| 197351493 | GC-AG | 0 | 1.000000099473604e-05 | 618 | rna-XM_032217382.1 35062871 | 7 | 63532013 | 63532630 | Thamnophis elegans 35005 | CAG|GCAAGTTTTC...GGGCCATCGACC/CATCGACCCACA...TTTAG|GAG | 1 | 1 | 33.26 |
| 197351494 | GT-AG | 0 | 0.0101709894205424 | 939 | rna-XM_032217382.1 35062871 | 8 | 63530896 | 63531834 | Thamnophis elegans 35005 | CAG|GTAGCCAGCA...TCACTCTTATTC/TTTTGTCTCAAT...ACTAG|GTA | 2 | 1 | 36.265 |
| 197351495 | GT-AG | 0 | 1.000000099473604e-05 | 454 | rna-XM_032217382.1 35062871 | 9 | 63527261 | 63527714 | Thamnophis elegans 35005 | AAG|GTGAGAGCTC...CTTTTCTTTTCT/TCGTATCTCACA...CTTAG|TAT | 0 | 1 | 89.971 |
| 197351496 | GT-AG | 0 | 1.000000099473604e-05 | 411 | rna-XM_032217382.1 35062871 | 10 | 63526744 | 63527154 | Thamnophis elegans 35005 | CAG|GTGGGTTTTC...TGTTTTTTGTTT/TTGTTTCTGTTT...TGCAG|GGA | 1 | 1 | 91.761 |
| 197367508 | GT-AG | 0 | 1.000000099473604e-05 | 358 | rna-XM_032217382.1 35062871 | 1 | 63540920 | 63541277 | Thamnophis elegans 35005 | ATG|GTGAGGAGAA...CTGTCGTTAAAT/CTGTCGTTAAAT...GCAAG|GTC | 0 | 2.245 | |
| 197367509 | GT-AG | 0 | 1.000000099473604e-05 | 2944 | rna-XM_032217382.1 35062871 | 2 | 63537887 | 63540830 | Thamnophis elegans 35005 | TCG|GTGTGTGAGT...GTGTTTGTATCT/ACAATTATAATA...TTTAG|TTC | 0 | 3.748 | |
| 197367510 | GT-AG | 0 | 5.398493188063748e-05 | 417 | rna-XM_032217382.1 35062871 | 3 | 63537403 | 63537819 | Thamnophis elegans 35005 | CAG|GTATGACTAC...GTATCTTTATTT/TGTATCTTTATT...AACAG|GAT | 0 | 4.879 |
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]);