home / WtMTA

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)

13 rows where transcript_id = 13851110

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, 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
73763287 GT-AG 0 1.000000099473604e-05 119 rna-XM_012977858.1 13851110 2 4104691 4104809 Erythranthe guttata 4155 ATG|GTTCGAATTT...GTTTCGTTCATA/GGTTTGCTAACT...TACAG|GCT 0 1 10.166
73763288 GT-AG 0 1.000000099473604e-05 272 rna-XM_012977858.1 13851110 3 4104391 4104662 Erythranthe guttata 4155 TTG|GTGAGTCTTT...GGGTTCTTATTT/TGGGTTCTTATT...TTCAG|GAA 1 1 11.079
73763289 GT-AG 0 0.0003555250862135 233 rna-XM_012977858.1 13851110 4 4104027 4104259 Erythranthe guttata 4155 CAG|GTTCTCTACA...TTTATCTTAATG/ATTCTTTTTATT...ATCAG|GTC 0 1 15.347
73763290 GT-AG 0 1.000000099473604e-05 72 rna-XM_012977858.1 13851110 5 4103599 4103670 Erythranthe guttata 4155 TTG|GTAAGATACA...AATTTCTTATAT/TAATTTCTTATA...CGCAG|GTT 2 1 26.947
73763291 GT-AG 0 9.031701897788412e-05 91 rna-XM_012977858.1 13851110 6 4103414 4103504 Erythranthe guttata 4155 AAG|GTACTTCATG...TTTATTTTAATC/TTTATTTTAATC...TTCAG|GTG 0 1 30.01
73763292 GT-AG 0 3.35397711407608e-05 178 rna-XM_012977858.1 13851110 7 4103142 4103319 Erythranthe guttata 4155 CAG|GTGTGTTCCT...TTTTTCTCATTT/ATTTTTCTCATT...ATCAG|ACA 1 1 33.073
73763293 GC-AG 0 1.000000099473604e-05 78 rna-XM_012977858.1 13851110 8 4102934 4103011 Erythranthe guttata 4155 GAG|GCAAGCACTT...TTGTCTTTGAAT/CTTTGTCTGAAA...TGCAG|CAT 2 1 37.309
73763294 GT-AG 0 0.0005556473950577 82 rna-XM_012977858.1 13851110 9 4102803 4102884 Erythranthe guttata 4155 TCT|GTAAGTGTTT...TTATTCTTAAAT/TAAGTGCTTACT...TTCAG|GAA 0 1 38.905
73763295 GT-AG 0 0.0010475058637884 89 rna-XM_012977858.1 13851110 10 4102670 4102758 Erythranthe guttata 4155 CGG|GTATGATTTA...TATTCTTTTATA/TATTCTTTTATA...CACAG|GAA 2 1 40.339
73763296 GT-AG 1 99.25459820929468 1450 rna-XM_012977858.1 13851110 11 4101137 4102586 Erythranthe guttata 4155 CTA|GTATCCTTCT...ATGCCCTTAACA/TGGTTCTTGAAA...TATAG|ATA 1 1 43.043
73763297 GT-AG 0 0.0178385290903148 1542 rna-XM_012977858.1 13851110 12 4099094 4100635 Erythranthe guttata 4155 CAG|GTATATTTTT...ACTAATTTAACA/ACTAATTTAACA...TGCAG|AAG 1 1 59.368
73763298 GT-AG 0 1.000000099473604e-05 465 rna-XM_012977858.1 13851110 13 4098120 4098584 Erythranthe guttata 4155 CCG|GTGCGTAATT...ATGGTGTTAACT/ATGGTGTTAACT...TGCAG|AAT 0 1 75.953
73767388 GC-AT 0 1.000000099473604e-05 31 rna-XM_012977858.1 13851110 1 4104993 4105023 Erythranthe guttata 4155 AAT|GCGCGTGTTG...CCGATCGGGAAA/GATCGGGAAACT...AGAAT|TGA   0 5.376

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 54.082ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)