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)

12 rows where transcript_id = 16261759

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
86765417 GT-AG 0 1.000000099473604e-05 61 Gomus.A01G046500.1.v1.1 16261759 1 4548116 4548176 Gossypium mustelinum 34275 AAA|GTGGGTGGTG...TGTGTCCTAAAC/AAGGATTTCATC...TGTAG|AAA 1 1 12.006
86765418 GT-AG 0 0.0001674866545402 3662 Gomus.A01G046500.1.v1.1 16261759 2 4543694 4547355 Gossypium mustelinum 34275 AAG|GTATGATCCC...TCTATTTTATTT/TTATTATTCAAT...ATTAG|GTA 2 1 27.341
86765419 GT-AG 0 1.000000099473604e-05 39 Gomus.A01G046500.1.v1.1 16261759 3 4543651 4543689 Gossypium mustelinum 34275 TAC|GTTAAGTTAT...TAGTTTGTGATG/TAGTTTGTGATG...TATAG|ATT 0 1 27.421
86765420 GT-AG 0 8.700301445987584 117 Gomus.A01G046500.1.v1.1 16261759 4 4542949 4543065 Gossypium mustelinum 34275 GAG|GTATCTTCTA...ATACTTTTAACG/ATACTTTTAACG...CCTAG|AAA 0 1 39.225
86765421 GT-AG 0 0.0016189566557935 901 Gomus.A01G046500.1.v1.1 16261759 5 4541274 4542174 Gossypium mustelinum 34275 GAG|GTACATTCTT...TGTGTTTTAATG/TGTGTTTTAATG...ATTAG|GAT 0 1 54.843
86765422 GT-AG 0 0.010402079991768 72 Gomus.A01G046500.1.v1.1 16261759 6 4541088 4541159 Gossypium mustelinum 34275 GGA|GTAACTTGAC...CGCATCTCAAAT/GCTTGGTTGATA...CAAAG|AAT 0 1 57.143
86765423 GT-AG 0 2.0064743795610857e-05 3051 Gomus.A01G046500.1.v1.1 16261759 7 4537897 4540947 Gossypium mustelinum 34275 CAA|GTTCCAAGTG...AAACGATTAACA/AAACGATTAACA...CACAG|CCT 2 1 59.968
86765424 GT-AG 0 0.0005712086587863 2192 Gomus.A01G046500.1.v1.1 16261759 8 4535382 4537573 Gossypium mustelinum 34275 AAA|GTAACAAAGT...ACATTTTTGACT/ACATTTTTGACT...ACAAG|AAC 1 1 66.485
86765425 GT-AG 0 1.000000099473604e-05 84 Gomus.A01G046500.1.v1.1 16261759 9 4535082 4535165 Gossypium mustelinum 34275 GTG|GTGCATTAAA...AAAACCATAGTA/ATGGAGTTCAAA...ATAAG|ATC 1 1 70.843
86765426 GT-AG 0 0.0911544724259011 310 Gomus.A01G046500.1.v1.1 16261759 10 4534614 4534923 Gossypium mustelinum 34275 ACG|GTACACTTTT...ATTTTATTAATT/TTTGTTTTCATT...ACCAG|GAA 0 1 74.031
86765427 GT-AG 0 0.0004552193733664 266 Gomus.A01G046500.1.v1.1 16261759 11 4533781 4534046 Gossypium mustelinum 34275 AAG|GTATGTCCCC...TTCCCTTTACTT/CTTCCCTTTACT...TGCAG|GAG 0 1 85.472
86765428 GT-AG 0 0.0038318460188869 128 Gomus.A01G046500.1.v1.1 16261759 12 4533047 4533174 Gossypium mustelinum 34275 CAG|GTATTTATCC...TTCATTTTATTT/TTTATTTTTATG...TGAAG|GCA 0 1 97.7

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