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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55033583 GT-AG 0 1.000000099473604e-05 386 rna-XM_008447378.2 10007574 1 7656002 7656387 Cucumis melo 3656 AAG|GTAAGGGACG...TTTCACTTAATT/ACGCTTTTCACT...AGTAG|GGG 0 1 11.353
55033584 GT-AG 0 1.000000099473604e-05 2051 rna-XM_008447378.2 10007574 2 7656571 7658621 Cucumis melo 3656 TTG|GTGAGTATCA...TTTTTCTTGCTT/ATATTTTTCAAT...TTTAG|CTT 0 1 18.349
55033585 GC-AG 0 1.000000099473604e-05 1403 rna-XM_008447378.2 10007574 3 7658769 7660171 Cucumis melo 3656 AAG|GCAAGGCTCA...AATTCCTGGAAA/AATGAGCTGACA...TTCAG|GTT 0 1 23.968
55033586 GT-AG 0 0.0011372434809206 332 rna-XM_008447378.2 10007574 4 7660387 7660718 Cucumis melo 3656 GAG|GTATAGTTCT...ATGTTTTTACAT/AATGTTTTTACA...TTCAG|TGC 2 1 32.187
55033587 GT-AG 0 0.0004127786102306 398 rna-XM_008447378.2 10007574 5 7660999 7661396 Cucumis melo 3656 CAT|GTAAATTGCT...GACATCTTGATA/AATGTATTAAAT...TACAG|ATC 0 1 42.89
55033588 GT-AG 0 1.000000099473604e-05 276 rna-XM_008447378.2 10007574 6 7661532 7661807 Cucumis melo 3656 AAT|GTAAGTCATC...GATAACTTAACA/ATCCATCTCATA...TATAG|GTT 0 1 48.05
55033589 GT-AG 0 1.000000099473604e-05 657 rna-XM_008447378.2 10007574 7 7661927 7662583 Cucumis melo 3656 TAG|GTAGGAGGGT...GTTTCTTTAGTG/ATTTATATCATT...TTTAG|TGA 2 1 52.599
55033590 GT-AG 0 1.000000099473604e-05 880 rna-XM_008447378.2 10007574 8 7662741 7663620 Cucumis melo 3656 CAG|GTTAGTAATT...GGATTCTTCATT/TTGTTGTTCATC...GTTAG|GAC 0 1 58.601
55033591 GT-AG 0 5.802966289837727e-05 88 rna-XM_008447378.2 10007574 9 7663868 7663955 Cucumis melo 3656 GCG|GTATTGATCT...GTCTACTAAGTT/AGTCTACTAAGT...TTCAG|GTG 1 1 68.043
55033592 GC-AG 0 1.000000099473604e-05 889 rna-XM_008447378.2 10007574 10 7664033 7664921 Cucumis melo 3656 AAG|GCGAGCACAA...TTGTCATTGACA/AGTTTTGTCATT...TGTAG|GTA 0 1 70.986
55033593 GT-AG 0 1.000000099473604e-05 1055 rna-XM_008447378.2 10007574 11 7665042 7666096 Cucumis melo 3656 GAG|GTTAGATGGA...AAGTCCTTATTA/CATGTGTTCAAT...TGCAG|GAA 0 1 75.573
55033594 GT-AG 0 1.000000099473604e-05 73 rna-XM_008447378.2 10007574 12 7666228 7666300 Cucumis melo 3656 CAG|GTTAGCAGTA...ATATACTTAAAT/GTGTACCTCATT...CACAG|CAA 2 1 80.581
55033595 GT-AG 0 1.000000099473604e-05 774 rna-XM_008447378.2 10007574 13 7666476 7667249 Cucumis melo 3656 GAG|GTGTGTCTTC...TCATGTTTGATG/TGAATACTCATC...TTCAG|ATC 0 1 87.271

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