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

✎ 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
18022181 GT-AG 0 1.000000099473604e-05 4914 rna-XM_020394416.1 3611930 1 88392702 88397615 Asparagus officinalis 4686 CAG|GTACAGATAT...GTCTTCTTATTC/CTTATTCTCAAT...GGCAG|GTG 0 1 2.504
18022182 GT-AG 0 1.000000099473604e-05 190 rna-XM_020394416.1 3611930 2 88392440 88392629 Asparagus officinalis 4686 CAG|GTGTGAACCT...TTAGTCTTATTT/CTTAGTCTTATT...TGCAG|CTA 0 1 4.577
18022183 GT-AG 0 1.000000099473604e-05 103 rna-XM_020394416.1 3611930 3 88392282 88392384 Asparagus officinalis 4686 TGG|GTAAGTCAAA...TTGTCCTTTTTT/AATATGCTGATT...TTCAG|CAA 1 1 6.16
18022184 GT-AG 0 0.0001059711334673 182 rna-XM_020394416.1 3611930 4 88391957 88392138 Asparagus officinalis 4686 GAG|GTAAGCAATA...TATCTCTTAACT/ATTATTTTAAAT...TGCAG|AAA 0 1 10.276
18022185 GT-AG 0 3.928324081540647e-05 1713 rna-XM_020394416.1 3611930 5 88389969 88391681 Asparagus officinalis 4686 GTG|GTACGTGTTC...ACATGCTTATTA/AACATGCTTATT...ATCAG|GTG 2 1 18.192
18022186 GT-AG 0 8.879548587318315e-05 869 rna-XM_020394416.1 3611930 6 88389041 88389909 Asparagus officinalis 4686 CTA|GTAAGTAATC...GTTTTTTTAACC/GTTTTTTTAACC...TTCAG|GTA 1 1 19.891
18022187 GT-AG 0 4.14472767920279e-05 84 rna-XM_020394416.1 3611930 7 88388716 88388799 Asparagus officinalis 4686 TCG|GTAAATCTCC...AAATATTTAATC/AAATATTTAATC...CTCAG|GTA 2 1 26.828
18022188 GT-AG 0 1.000000099473604e-05 1699 rna-XM_020394416.1 3611930 8 88386866 88388564 Asparagus officinalis 4686 AGG|GTAGGTAGAA...TTTTCTCTACTG/CTAATCCTGATG...TGTAG|CTT 0 1 31.174
18022189 GT-AG 0 0.0001278398762003 237 rna-XM_020394416.1 3611930 9 88386419 88386655 Asparagus officinalis 4686 CAG|GTACGTCTTG...GAAAACTTAACA/CATAAGCTAATT...AGCAG|TTA 0 1 37.219
18022190 GT-AG 0 0.0002046770175357 1361 rna-XM_020394416.1 3611930 10 88383543 88384903 Asparagus officinalis 4686 CAG|GTATGTACTG...TTTCTCTAAACA/TTCTCTTTCAAT...TTTAG|GTG 0 1 80.829
18022191 GT-AG 0 1.000000099473604e-05 126 rna-XM_020394416.1 3611930 11 88383348 88383473 Asparagus officinalis 4686 CAG|GTACGATATG...TTATTATTATCT/AATATTTTCAGT...GACAG|GCA 0 1 82.815
18022192 GT-AG 0 1.000000099473604e-05 1538 rna-XM_020394416.1 3611930 12 88381591 88383128 Asparagus officinalis 4686 GAG|GTAATATTTC...TGTTTCTTTGTA/TCTATACTGAAC...TGCAG|CTT 0 1 89.119
18022193 GT-AG 0 0.0028628289672116 441 rna-XM_020394416.1 3611930 13 88381057 88381497 Asparagus officinalis 4686 AAG|GTACTCATCC...GTTGTTTTATCA/AGTTGTTTTATC...TTCAG|TGT 0 1 91.796

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