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

✎ 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
55033571 GT-AG 0 1.000000099473604e-05 107 rna-XM_008439349.2 10007573 1 1935253 1935359 Cucumis melo 3656 GAG|GTTTGAAGAA...TTTTTTTTAATT/TTTTTTTTAATT...TGTAG|GAT 0 1 51.373
55033572 GT-AG 0 0.0172138867331013 364 rna-XM_008439349.2 10007573 2 1935535 1935898 Cucumis melo 3656 CAG|GTATCAGTTT...TTTTTTTTTTCT/AAAATGGACACC...TCCAG|GTA 1 1 58.047
55033573 GT-AG 0 0.0002447376462288 413 rna-XM_008439349.2 10007573 3 1936012 1936424 Cucumis melo 3656 AAG|GTGTGCTTGA...TCATATTTAACA/TTATTATTCAAC...GACAG|GTT 0 1 62.357
55033574 GT-AG 0 0.0001493124662761 365 rna-XM_008439349.2 10007573 4 1936524 1936888 Cucumis melo 3656 GAG|GTATATGTAA...TCTTTCTGAGAC/CAGTGTCTGATG...GTCAG|GCT 0 1 66.133
55033575 GT-AG 0 3.329278961810938e-05 484 rna-XM_008439349.2 10007573 5 1936959 1937442 Cucumis melo 3656 TCG|GTATGAACTC...GATCCTTTTGTT/CGGCAATTGATC...CTTAG|TGG 1 1 68.802
55033576 GT-AG 0 0.0405991558842342 1229 rna-XM_008439349.2 10007573 6 1937499 1938727 Cucumis melo 3656 AAG|GTATATTCTC...GTGTTCTTATTA/TGTGTTCTTATT...GCTAG|AGT 0 1 70.938
55033577 GT-AG 0 0.0001190177679945 298 rna-XM_008439349.2 10007573 7 1938779 1939076 Cucumis melo 3656 GCA|GTAAGTCCTT...TTTTCCTTAAGA/TTTTTCCTTAAG...TTTAG|GGC 0 1 72.883
55033578 GT-AG 0 1.001441570038581e-05 217 rna-XM_008439349.2 10007573 8 1939182 1939398 Cucumis melo 3656 AAG|GTTTGTTAGA...TTCTGTTTATTG/TTTCTGTTTATT...TGCAG|TCC 0 1 76.888
55033579 GT-AG 0 2.082755765320519e-05 85 rna-XM_008439349.2 10007573 9 1939444 1939528 Cucumis melo 3656 GAG|GTTAATTTTT...ATAACCTTATCT/AATAACCTTATC...GCCAG|GTT 0 1 78.604
55033580 GT-AG 0 1.000000099473604e-05 196 rna-XM_008439349.2 10007573 10 1939632 1939827 Cucumis melo 3656 AAG|GTACAGTAAA...GGTTTCTCACAT/TGGTTTCTCACA...TGCAG|ATG 1 1 82.532
55033581 GT-AG 0 0.0017188922918718 135 rna-XM_008439349.2 10007573 11 1940025 1940159 Cucumis melo 3656 CAG|GTTTGCATTG...TTTCCTTTAATA/TTTCCTTTAATA...TCCAG|GTT 0 1 90.046
55033582 GT-AG 0 1.000000099473604e-05 145 rna-XM_008439349.2 10007573 12 1940247 1940391 Cucumis melo 3656 CTG|GTTAGTCATC...TCTCATTTGATA/TTCATTCTCATT...TGCAG|AAA 0 1 93.364

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