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

✎ 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
160179015 GT-AG 0 1.000000099473604e-05 1486 Ptrif.0001s2887.1.v1.3.1 28701049 1 24041424 24042909 Citrus trifoliata 37690 AAG|GTGTGTCAAG...TGTCTTTTAATC/TCCATTCTGATT...AACAG|GGG 1 1 1.262
160179016 GT-AG 0 0.2478786451180086 90 Ptrif.0001s2887.1.v1.3.1 28701049 2 24041221 24041310 Citrus trifoliata 37690 CAA|GTATACTCTC...TCTGTCTGGATT/AATTTTCTGATG...TACAG|GTT 0 1 4.577
160179017 GT-AG 0 8.597537612815505e-05 382 Ptrif.0001s2887.1.v1.3.1 28701049 3 24040743 24041124 Citrus trifoliata 37690 CAT|GTATGAAATC...ATTCCCTTTCTG/AGTACATTTATT...ATCAG|GCT 0 1 7.394
160179018 GT-AG 0 1.000000099473604e-05 106 Ptrif.0001s2887.1.v1.3.1 28701049 4 24040580 24040685 Citrus trifoliata 37690 AAA|GTGGGTCAGC...TGTTACTTATAT/ATGTTACTTATA...TACAG|TAT 0 1 9.067
160179019 GT-AG 0 1.000000099473604e-05 103 Ptrif.0001s2887.1.v1.3.1 28701049 5 24040321 24040423 Citrus trifoliata 37690 CTA|GTGTGTAGAC...TGGCACTTACTG/CTGGCACTTACT...GATAG|GAT 0 1 13.644
160179020 GT-AG 0 1.53426826135771e-05 130 Ptrif.0001s2887.1.v1.3.1 28701049 6 24040106 24040235 Citrus trifoliata 37690 GAG|GTATTGTCCA...TTAGTTGGAACT/TTGGAACTGAGC...TGCAG|GCC 1 1 16.138
160179021 GT-AG 0 1.000000099473604e-05 86 Ptrif.0001s2887.1.v1.3.1 28701049 7 24039929 24040014 Citrus trifoliata 37690 AAG|GTATGAGTTA...TTTTCCCTGCCA/TAAATTATCATT...TGCAG|AGA 2 1 18.809
160179022 GT-AG 0 1.000000099473604e-05 80 Ptrif.0001s2887.1.v1.3.1 28701049 8 24039684 24039763 Citrus trifoliata 37690 AAG|GTACTGCTAT...TGTGCCGTAATT/CAGTGACTAATT...GATAG|GGC 2 1 23.65
160179023 GT-AG 0 1.000000099473604e-05 140 Ptrif.0001s2887.1.v1.3.1 28701049 9 24039348 24039487 Citrus trifoliata 37690 CAG|GTATTACGAA...CTTTCTATGATT/CTTTCTATGATT...AATAG|GTT 0 1 29.401
160179024 GT-AG 0 0.0002365804910406 430 Ptrif.0001s2887.1.v1.3.1 28701049 10 24038779 24039208 Citrus trifoliata 37690 CAG|GTATATGATG...GTCTCGTTGATG/TCGTTGATGATC...TGCAG|ATG 1 1 33.48
160179025 GT-AG 0 0.0001894136746033 187 Ptrif.0001s2887.1.v1.3.1 28701049 11 24036694 24036880 Citrus trifoliata 37690 AAG|GTTTGTTATG...TTACCTTTAATC/TTTATTTTTACC...TGAAG|GTT 0 1 89.173
160179026 GT-AG 0 0.0001403498899134 89 Ptrif.0001s2887.1.v1.3.1 28701049 12 24036414 24036502 Citrus trifoliata 37690 GGA|GTAAGTCAAG...TTTTTCTTAACT/TTTTTCTTAACT...TGCAG|TGA 2 1 94.777

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