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

✎ 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
55534933 GT-AG 0 1.000000099473604e-05 227 rna-XM_023084207.1 10113172 1 10621126 10621352 Cucurbita moschata 3662 ATG|GTTAGTCTTA...ATTACATTAAAA/TGATGATTTATT...TACAG|GTG 0 1 6.956
55534934 GT-AG 0 1.000000099473604e-05 83 rna-XM_023084207.1 10113172 2 10620800 10620882 Cucurbita moschata 3662 GAG|GTTATTTTCT...CAAGTGTTAATT/CAAGTGTTAATT...TTTAG|CTG 0 1 13.584
55534935 GT-AG 0 2.3682463880805805e-05 92 rna-XM_023084207.1 10113172 3 10619910 10620001 Cucurbita moschata 3662 ATT|GTAAGTATCT...ACAAACTTAATC/CGAGTACTTACA...TGTAG|GTG 0 1 35.352
55534936 GT-AG 0 1.000000099473604e-05 78 rna-XM_023084207.1 10113172 4 10619584 10619661 Cucurbita moschata 3662 GAG|GTGAGTTTAT...TTTACTTTACTG/ACTTTACTGACC...TGCAG|TCA 2 1 42.117
55534937 GT-AG 0 1.000000099473604e-05 251 rna-XM_023084207.1 10113172 5 10619173 10619423 Cucurbita moschata 3662 AAG|GTAACACAAA...TTATTATTATCC/AATGGCCTAATT...TACAG|GTT 0 1 46.481
55534938 GT-AG 0 0.0370310241460898 71 rna-XM_023084207.1 10113172 6 10618975 10619045 Cucurbita moschata 3662 CTG|GTATGCTTTC...AGTTACTCGACT/GTAGTGCTAATA...CTTAG|ATG 1 1 49.945
55534939 GT-AG 0 2.8981223748875743e-05 98 rna-XM_023084207.1 10113172 7 10618787 10618884 Cucurbita moschata 3662 CCT|GTAAGTGTTC...TGTGCTTGGATT/CTTGGATTGACG...TGCAG|CTG 1 1 52.4
55534940 GT-AG 0 0.0001807680647346 97 rna-XM_023084207.1 10113172 8 10618501 10618597 Cucurbita moschata 3662 GTG|GTATGTCAAA...GATTTCTTGTTT/TTCTTGTTTATT...TATAG|GGA 1 1 57.556
55534941 GT-AG 0 1.000000099473604e-05 128 rna-XM_023084207.1 10113172 9 10618303 10618430 Cucurbita moschata 3662 AAC|GTAAGTAATT...CGATTCTAAAAA/TTATATATCATA...TTTAG|GCA 2 1 59.465
55534942 GT-AG 0 1.000000099473604e-05 74 rna-XM_023084207.1 10113172 10 10618186 10618259 Cucurbita moschata 3662 TTG|GTGAGCATCA...GAGCTTTTACAA/CAACTACTAACT...AACAG|GTT 0 1 60.638
55534943 GT-AG 0 1.000000099473604e-05 73 rna-XM_023084207.1 10113172 11 10617972 10618044 Cucurbita moschata 3662 GTG|GTGAGTGAAG...TGCTCGTTAGTA/ACTATGTTTATG...TGCAG|GTA 0 1 64.484
55534944 GT-AG 0 1.000000099473604e-05 79 rna-XM_023084207.1 10113172 12 10616807 10616885 Cucurbita moschata 3662 CAA|GTAAGTACCA...CCTTCCTTTTTG/AAGTTTCTAAAA...AACAG|ATG 0 1 94.108

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