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)

14 rows where transcript_id = 10007568

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55033525 GT-AG 0 1.000000099473604e-05 83 rna-XM_008440590.2 10007568 1 330826 330908 Cucumis melo 3656 CAG|GTACAAAGTT...AGCTTTTTGAGA/ATGAATATAACC...AATAG|GTT 2 1 3.967
55033526 GT-AG 0 1.000000099473604e-05 72 rna-XM_008440590.2 10007568 2 330621 330692 Cucumis melo 3656 CAG|GTAATATTGG...TTTTCTTTGAAG/TGGATTTTGATG...TGCAG|GAG 0 1 8.899
55033527 GT-AG 0 1.000000099473604e-05 141 rna-XM_008440590.2 10007568 3 330325 330465 Cucumis melo 3656 TTG|GTGAGTCATA...TTTGATTTGATA/TTTGATTTGATA...TGCAG|GGC 2 1 14.646
55033528 GT-AG 0 1.559452300675786e-05 110 rna-XM_008440590.2 10007568 4 330022 330131 Cucumis melo 3656 CAG|GTATGAAAAT...TGGATCTTAATT/TGGATCTTAATT...TACAG|AGT 0 1 21.802
55033529 GT-AG 0 0.0570827586632202 112 rna-XM_008440590.2 10007568 5 329791 329902 Cucumis melo 3656 CAA|GTAACCAAGA...TTATCTTTAATG/TTTTTTTTTATC...TTAAG|GAT 2 1 26.214
55033530 GT-AG 0 1.000000099473604e-05 89 rna-XM_008440590.2 10007568 6 329485 329573 Cucumis melo 3656 CAG|GTCAGAATTT...CTTCCTGTGAAC/TTGTATATCACT...ACTAG|ATT 0 1 34.26
55033531 GT-AG 0 0.1596331293490456 98 rna-XM_008440590.2 10007568 7 329291 329388 Cucumis melo 3656 GTG|GTATGTTTTT...TATCCTTTAATA/TATCCTTTAATA...TTTAG|GTG 0 1 37.82
55033532 GC-AG 0 1.000000099473604e-05 90 rna-XM_008440590.2 10007568 8 329027 329116 Cucumis melo 3656 AAG|GCATTTGACC...TAACTTTTATCC/CTTCTACTAACT...TCTAG|GAT 0 1 44.271
55033533 GT-AG 0 0.0016843158784267 139 rna-XM_008440590.2 10007568 9 328771 328909 Cucumis melo 3656 CAG|GTCCACTTCA...AATTTTTTAACA/AATTTTTTAACA...CCCAG|GGA 0 1 48.61
55033534 GT-AG 0 1.000000099473604e-05 94 rna-XM_008440590.2 10007568 10 328510 328603 Cucumis melo 3656 AAG|GTTAGAAACT...AAAGTTTTATCC/AAAAGTTTTATC...AACAG|CAA 2 1 54.802
55033535 GT-AG 0 3.021925540401821e-05 96 rna-XM_008440590.2 10007568 11 328189 328284 Cucumis melo 3656 CAT|GTAATTGACA...ACTTCCCTAACT/ACTTCCCTAACT...AACAG|AGG 2 1 63.144
55033536 GT-AG 0 1.000000099473604e-05 75 rna-XM_008440590.2 10007568 12 327547 327621 Cucumis melo 3656 ATG|GTAAATAAAG...CACTTATTGATT/TTGGTATTCACT...TTCAG|CTA 2 1 84.168
55033537 GT-AG 0 2.3220296992437416e-05 83 rna-XM_008440590.2 10007568 13 327325 327407 Cucumis melo 3656 TTG|GTAAGCATCT...GCTTTTTTAAGC/GCTTTTTTAAGC...TACAG|GTG 0 1 89.321
55033538 GC-AG 0 1.000000099473604e-05 193 rna-XM_008440590.2 10007568 14 327004 327196 Cucumis melo 3656 AAG|GCAAATTATC...AAGTGTTTATTT/AAAGTGTTTATT...TGCAG|GAG 2 1 94.067

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