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 = 3485120
This data as json, CSV (advanced)
Suggested facets: 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
17203158 | GT-AG | 0 | 9.223119835629896 | 235 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 4 | 195517 | 195751 | Armadillidium vulgare 13347 | A|GTAAGTAAAT...TATTTTTTAATA/TATTTTTTAATA...TTCAG|TGG | 1 | 1 | 31.04 |
17203159 | GT-AG | 0 | 1.5805092634662926e-05 | 1098 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 5 | 194260 | 195357 | Armadillidium vulgare 13347 | GAG|GTAGTGTTAT...TTCATTTTAATC/TTTATGTTTATT...AACAG|GAA | 1 | 1 | 44.062 |
17203160 | GT-AG | 0 | 1.4723939115400245e-05 | 3221 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 6 | 190671 | 193891 | Armadillidium vulgare 13347 | CAG|GTATTGGCTG...ATGTTTTTACAT/AATGTTTTTACA...CACAG|CGT | 0 | 1 | 74.201 |
17203161 | GT-AG | 0 | 1.000000099473604e-05 | 8214 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 7 | 182418 | 190631 | Armadillidium vulgare 13347 | TTG|GTAAGCGGAT...TTATTTTTATTA/ATTATTTTTATT...TCCAG|ACC | 0 | 1 | 77.396 |
17203162 | GT-AG | 0 | 0.0007290957410509 | 4494 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 8 | 177750 | 182243 | Armadillidium vulgare 13347 | GAG|GTATATAAAA...AAACCTTTAACT/CTTTAACTCACT...TGCAG|GAA | 0 | 1 | 91.646 |
17203163 | GT-AG | 0 | 1.2222821638875204e-05 | 6561 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 9 | 171144 | 177704 | Armadillidium vulgare 13347 | AAG|GTAAGTTTTC...TATATATTAATA/TATATATTAATA...TATAG|GCC | 0 | 1 | 95.332 |
17203165 | GT-AG | 0 | 1.000000099473604e-05 | 2983 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 1 | 208111 | 211093 | Armadillidium vulgare 13347 | TTG|GTAAGAACAA...GTTATTTTATCT/CTTTTTTTCAAT...TGCAG|AAA | 0 | 12.858 | |
17203166 | GT-AG | 0 | 1.000000099473604e-05 | 6115 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 2 | 201894 | 208008 | Armadillidium vulgare 13347 | TTG|GTAAGTAGTT...TATATATTATAT/ATATATATTATA...CGTAG|GAC | 0 | 21.212 | |
17203167 | GT-AG | 0 | 1.000000099473604e-05 | 5940 | rna-gnl|WGS:SAUD|Avbf_00322-RA_mrna 3485120 | 3 | 195835 | 201774 | Armadillidium vulgare 13347 | CAA|GTAAGATATT...CTCTCATTAACA/AGCTCTCTCATT...TCCAG|ACG | 0 | 30.958 |
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]);