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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55534964 GT-AG 0 1.000000099473604e-05 129 rna-XM_023082445.1 10113174 2 6905247 6905375 Cucurbita moschata 3662 CTG|GTAAAACATA...ATGTTTCTAACT/ATGTTTCTAACT...CCCAG|TTA 1 1 35.067
55534965 GT-AG 0 8.35462745427178e-05 1067 rna-XM_023082445.1 10113174 3 6905737 6906803 Cucurbita moschata 3662 TGA|GTAAGTTACT...CATGTCATGACT/TCATGACTCATT...TGCAG|ATT 2 1 42.401
55534966 GT-AG 0 6.74661790853411e-05 467 rna-XM_023082445.1 10113174 4 6906889 6907355 Cucurbita moschata 3662 CAG|GTAGTTTGTG...TTTTCCTCATTT/CTTTTCCTCATT...TGCAG|ATT 0 1 44.128
55534967 GT-AG 0 0.0004920970121438 3784 rna-XM_023082445.1 10113174 5 6907413 6911196 Cucurbita moschata 3662 AAG|GTATGTTACT...TTGATCATAATC/TTTTTGATCATA...TGCAG|GCA 0 1 45.286
55534968 GT-AG 0 1.000000099473604e-05 88 rna-XM_023082445.1 10113174 6 6911257 6911344 Cucurbita moschata 3662 GAG|GTTTTGACCA...ACCTTTTTAACT/TAGTTTTTCATT...CTCAG|GGA 0 1 46.505
55534969 GT-AG 0 0.000115567380707 3588 rna-XM_023082445.1 10113174 7 6911537 6915124 Cucurbita moschata 3662 CTT|GTAAGTTGGC...TTCATTTTGATG/TTTCTTTTCACT...TGCAG|TAT 0 1 50.406
55534970 AT-AG 0 1.000000099473604e-05 1916 rna-XM_023082445.1 10113174 8 6916641 6918556 Cucurbita moschata 3662 AAC|ATAAGGTAAC...TGAGCTGAAATA/AAATATATCAAT...TTTAG|ACG 1 1 81.207
55540912 GT-AG 0 1.000000099473604e-05 303 rna-XM_023082445.1 10113174 1 6903522 6903824 Cucurbita moschata 3662 GAG|GTAAGTGATG...TTTCACTTGAAT/TAGTGTTTCACT...ATCAG|AAG   0 7.985
55540913 GT-AG 0 1.000000099473604e-05 818 rna-XM_023082445.1 10113174 9 6918745 6919562 Cucurbita moschata 3662 AAT|GTGAGTATTT...CACTTCATAACT/AACTTGTTAACA...TATAG|AAT   0 85.026
55540914 GT-AG 0 0.196934713729405 98 rna-XM_023082445.1 10113174 10 6919604 6919701 Cucurbita moschata 3662 TAG|GTATTCTCCT...ATAATTTTGACA/ATAATTTTGACA...TACAG|CTT   0 85.859
55540915 GT-AG 0 0.0031786527068395 87 rna-XM_023082445.1 10113174 11 6919758 6919844 Cucurbita moschata 3662 AGG|GTATTATTCT...TTTTCCTTCTAT/ATGGATGTTATT...TGCAG|TCC   0 86.997
55540916 GT-AG 0 1.000000099473604e-05 1116 rna-XM_023082445.1 10113174 12 6919927 6921042 Cucurbita moschata 3662 AAG|GTTGGTAGCA...AAGGTTTTGATT/AAGGTTTTGATT...TGTAG|GAC   0 88.663

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