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

✎ 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
85342308 GT-AG 0 1.000000099473604e-05 302 Gobar.A01G147500.1.v1.1 15858528 1 57385256 57385557 Gossypium barbadense 3634 AAG|GTATGAAAAG...ATATCCTTCACC/ATATCCTTCACC...AACAG|GAG 1 1 1.238
85342309 GT-AG 0 1.1963772593954992e-05 168 Gobar.A01G147500.1.v1.1 15858528 2 57384815 57384982 Gossypium barbadense 3634 TAC|GTAAGTACTT...TTGTCTTTTTCA/GTCTTTTTCATG...TGAAG|CAT 1 1 10.375
85342310 GT-AG 0 7.994506556381057e-05 74 Gobar.A01G147500.1.v1.1 15858528 3 57384677 57384750 Gossypium barbadense 3634 CCC|GTAAGTTCGT...TAGGCATTAAAT/TCTGCTCTCACA...TGCAG|GTA 2 1 12.517
85342311 GT-AG 0 0.2584158973991579 157 Gobar.A01G147500.1.v1.1 15858528 4 57384373 57384529 Gossypium barbadense 3634 GGG|GTATATTTTT...GTTCTTTTGATT/GTTCTTTTGATT...TTTAG|GCA 2 1 17.436
85342312 GT-AG 0 0.0001024899047215 526 Gobar.A01G147500.1.v1.1 15858528 5 57383812 57384337 Gossypium barbadense 3634 TTT|GTAAGTTCTT...AGATTTTTATGT/TCCATTTTCATG...TGCAG|CTT 1 1 18.608
85342313 GT-AG 0 1.7805157676567027e-05 267 Gobar.A01G147500.1.v1.1 15858528 6 57383471 57383737 Gossypium barbadense 3634 TTT|GTAAGTGGTT...ACTTTTTTACTT/GACTTTTTTACT...AGTAG|GTT 0 1 21.084
85342314 GT-AG 0 0.0001936563012405 454 Gobar.A01G147500.1.v1.1 15858528 7 57382115 57382568 Gossypium barbadense 3634 CAG|GTATGTGGTT...TCATTCTTACTA/TTCATTCTTACT...TGAAG|ATT 2 1 51.272
85342315 GT-AG 0 0.0866435764219809 270 Gobar.A01G147500.1.v1.1 15858528 8 57381548 57381817 Gossypium barbadense 3634 AAG|GTATATTTTT...TAATCATTAGCT/TGGTTTTTCAAT...TTCAG|CTA 2 1 61.212
85342316 GT-AG 0 0.0003679691575659 246 Gobar.A01G147500.1.v1.1 15858528 9 57380864 57381109 Gossypium barbadense 3634 CAG|GTATAATAAG...TAAACCTTGATG/TGATGATTTACC...TTCAG|GAT 2 1 75.87
85342317 GT-AG 0 0.0001965106451027 80 Gobar.A01G147500.1.v1.1 15858528 10 57380635 57380714 Gossypium barbadense 3634 TTT|GTAAGTTGAA...ATCTCCTTCATT/ATTATGTTTATA...CGCAG|CAC 1 1 80.857
85342318 GT-AG 0 0.010178765217987 82 Gobar.A01G147500.1.v1.1 15858528 11 57380263 57380344 Gossypium barbadense 3634 TTG|GTATGTTCTA...TTTTTCTAGATG/ATGAGCTTAATA...TTCAG|TGG 0 1 90.562
85342319 GT-AG 0 1.000000099473604e-05 257 Gobar.A01G147500.1.v1.1 15858528 12 57379872 57380128 Gossypium barbadense 3634 AAA|GTTAGTAATA...GCTTCCTCAAAG/AAAGTGTTGATA...TTCAG|GTA 2 1 95.047

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