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

✎ 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
67905376 GT-AG 0 1.000000099473604e-05 236 rna-XM_022906406.1 12758661 1 1503329 1503564 Durio zibethinus 66656 CTT|GTAAGTGAAT...TTCTTTTTGATT/TTCTTTTTGATT...TGTAG|GTT 1 1 1.825
67905377 GT-AG 0 4.200589965100249e-05 109 rna-XM_022906406.1 12758661 2 1503860 1503968 Durio zibethinus 66656 AAG|GTATAGGTTG...CTGTACTTATTG/TTTTTGTTTACT...GACAG|ATT 2 1 17.66
67905378 GT-AG 0 1.000000099473604e-05 153 rna-XM_022906406.1 12758661 3 1504069 1504221 Durio zibethinus 66656 GAG|GTGATCTCAT...CATTTTTTAAAT/CATTTTTTAAAT...ATCAG|GAT 0 1 23.027
67905379 GT-AG 0 0.0079506303596991 117 rna-XM_022906406.1 12758661 4 1504489 1504605 Durio zibethinus 66656 ATG|GTATGTTTTA...AAGATTTTATTA/ATGTTTCTCATT...CATAG|GGT 0 1 37.359
67905380 GT-AG 0 1.000000099473604e-05 92 rna-XM_022906406.1 12758661 5 1504684 1504775 Durio zibethinus 66656 GAG|GTAGATATGG...GAATGTTTATCA/ATGTTTATCATC...TGCAG|ACT 0 1 41.546
67905381 GT-AG 0 0.0001754218877427 100 rna-XM_022906406.1 12758661 6 1504878 1504977 Durio zibethinus 66656 TCT|GTAAGTTCAA...CTCATCTTAGAA/AGTTACCTCATC...CTCAG|GTT 0 1 47.021
67905382 GT-AG 0 1.000000099473604e-05 86 rna-XM_022906406.1 12758661 7 1505028 1505113 Durio zibethinus 66656 TAG|GTAATTAAAT...AACTTTTTGATG/TTACATTTAATT...GTTAG|TGA 2 1 49.705
67905383 GT-AG 0 1.0596387946380685e-05 97 rna-XM_022906406.1 12758661 8 1505214 1505310 Durio zibethinus 66656 AAG|GTCTGATTTG...TGTTTATTGAAT/TTGTTTTTCAGT...TGCAG|ATG 0 1 55.072
67905384 GT-AG 0 0.0052968201571533 132 rna-XM_022906406.1 12758661 9 1505410 1505541 Durio zibethinus 66656 GTG|GTATGGTTTA...TATTCTCTAATT/TATTCTCTAATT...ATCAG|ATA 0 1 60.386
67905385 GT-AG 0 0.0003851494241955 276 rna-XM_022906406.1 12758661 10 1505656 1505931 Durio zibethinus 66656 GAG|GTATGTGCTT...AAATTCTTAAAT/CTTGAACTCATA...TATAG|GCT 0 1 66.506
67905386 GT-AG 0 1.000000099473604e-05 452 rna-XM_022906406.1 12758661 11 1506065 1506516 Durio zibethinus 66656 AAG|GTTAGCAATG...TTGACTTTGATG/ATATTTTTCAAT...TGCAG|GGA 1 1 73.645
67905387 GT-AG 0 1.9081151502654e-05 233 rna-XM_022906406.1 12758661 12 1506909 1507141 Durio zibethinus 66656 AAG|GTAGTTATTC...GTTGTATTGATT/GTTGTATTGATT...ACCAG|GCT 0 1 94.686
67905388 GT-AG 0 1.000000099473604e-05 94 rna-XM_022906406.1 12758661 13 1507217 1507310 Durio zibethinus 66656 CGG|GTAAGTCAAA...TTTTCATTAGTT/TTCATTTTCATT...TGCAG|AAA 0 1 98.712

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