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 = 11523749

✎ View and edit SQL

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
63298687 GT-AG 0 1.000000099473604e-05 185 Dioal.01G002100.1.v2.1 11523749 2 189955 190139 Dioscorea alata 55571 CCT|GTAAGAATTA...AAACCCTTTTCA/ACCCTTTTCACT...TGCAG|CAA 2 1 17.601
63298688 GT-AG 0 1.000000099473604e-05 218 Dioal.01G002100.1.v2.1 11523749 3 189685 189902 Dioscorea alata 55571 AAG|GTAGAATATT...ATCAACTTAGCG/TTCACATTCATC...ATCAG|ATT 0 1 19.287
63298689 GT-AG 0 4.326221798357072e-05 76 Dioal.01G002100.1.v2.1 11523749 4 189529 189604 Dioscorea alata 55571 CCA|GTAAGATTTT...CTTTCCTGGAAA/CATATATTAACC...TGCAG|CTA 2 1 21.88
63298690 GT-AG 0 1.000000099473604e-05 271 Dioal.01G002100.1.v2.1 11523749 5 189179 189449 Dioscorea alata 55571 AAG|GTACTGTACA...TTGGTTATAATT/CATCATCTCATC...TTCAG|GGG 0 1 24.441
63298691 GT-AG 0 8.54750283952085 119 Dioal.01G002100.1.v2.1 11523749 6 188976 189094 Dioscorea alata 55571 TCG|GTATCATATG...TTTTTCTTATCA/TTTCTTATCAAA...CTCAG|TCA 0 1 27.164
63298692 GT-AG 0 1.000000099473604e-05 78 Dioal.01G002100.1.v2.1 11523749 7 188752 188829 Dioscorea alata 55571 CAA|GTGAGTTTGC...ATGTTCTAAGTG/TTACTTCTGATA...TTTAG|GTA 2 1 31.896
63298693 GT-AG 0 0.0478285866390647 220 Dioal.01G002100.1.v2.1 11523749 8 188154 188373 Dioscorea alata 55571 TCG|GTATTTTCCC...TCTTTATTGACA/TCTTTATTGACA...TGCAG|AAC 2 1 44.149
63298694 GT-AG 0 1.000000099473604e-05 134 Dioal.01G002100.1.v2.1 11523749 9 187981 188114 Dioscorea alata 55571 GAG|GTGAGCATTT...TTCCTCTTAGTC/TTAGTCTTCACA...CCTAG|GTT 2 1 45.413
63298695 GT-AG 0 0.0161654513532992 80 Dioal.01G002100.1.v2.1 11523749 10 187808 187887 Dioscorea alata 55571 AAG|GTATGTTTTC...TCCATTTTAACA/TCCATTTTAACA...TGAAG|GGA 2 1 48.428
63298696 GT-AG 0 1.000000099473604e-05 546 Dioal.01G002100.1.v2.1 11523749 11 187083 187628 Dioscorea alata 55571 CAG|GTACTGAGCT...TGTATGTTGACT/TGTATGTTGACT...ACCAG|CTG 1 1 54.23
63298697 GT-AG 0 1.000000099473604e-05 521 Dioal.01G002100.1.v2.1 11523749 12 186371 186891 Dioscorea alata 55571 CAG|GTTTGGTTAA...TAACTCTTATTC/TTAGATCTCACT...GGCAG|GCT 0 1 60.421
63298698 GT-AG 0 1.000000099473604e-05 222 Dioal.01G002100.1.v2.1 11523749 13 185281 185502 Dioscorea alata 55571 GAG|GTGAATGCCT...TTTTTATTAGCA/ACAATTTTCACT...TTCAG|CTA 1 1 88.558
63301914 GT-AG 0 1.2115530248080709e-05 891 Dioal.01G002100.1.v2.1 11523749 1 190271 191161 Dioscorea alata 55571 CCG|GTCGCGCTCT...GATCCATTACTT/TTCGTGTTTACA...TGCAG|GGA   0 16.467

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 222.731ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)