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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
55033345 GT-AG 0 1.000000099473604e-05 754 rna-XM_008447197.2 10007554 2 7450402 7451155 Cucumis melo 3656 AAG|GTGATGAACA...TTCTCCTTATAT/GCATGTCTAATT...TTCAG|AGC 1 1 6.717
55033346 GT-AG 0 1.000000099473604e-05 585 rna-XM_008447197.2 10007554 3 7449335 7449919 Cucumis melo 3656 GCG|GTAGGTGATC...TTTTTTTTACTG/ATTTTTTTTACT...TGTAG|ATG 0 1 22.432
55033347 GT-AG 0 1.000000099473604e-05 120 rna-XM_008447197.2 10007554 4 7448999 7449118 Cucumis melo 3656 CAG|GTCTGAACTT...ATCTATTTATCA/TTATCACTCATT...TGCAG|GAA 0 1 29.475
55033348 GT-AG 0 1.000000099473604e-05 88 rna-XM_008447197.2 10007554 5 7448542 7448629 Cucumis melo 3656 GTG|GTAAAACAAT...GTTACCTTACTC/CGTTACCTTACT...TCCAG|CTT 0 1 41.506
55033349 GT-AG 0 0.0002226703220693 656 rna-XM_008447197.2 10007554 6 7447856 7448511 Cucumis melo 3656 CTG|GTATGTCGGA...ATTTGCTTAGTA/TGTGTACTCAAT...TTTAG|GTG 0 1 42.485
55033350 GT-AG 0 0.1954924255252333 129 rna-XM_008447197.2 10007554 7 7447499 7447627 Cucumis melo 3656 CAG|GTACCTTTTG...TATAACTTATTT/TTATAACTTATT...GCCAG|GTC 0 1 49.918
55033351 GT-AG 0 1.000000099473604e-05 465 rna-XM_008447197.2 10007554 8 7446872 7447336 Cucumis melo 3656 TTG|GTACTGAAAA...TTTTCTATGAAT/AAAATCATAATT...TTTAG|GGT 0 1 55.201
55033352 GT-AG 0 0.1222503808540079 83 rna-XM_008447197.2 10007554 9 7446567 7446649 Cucumis melo 3656 ATG|GTACCCTACT...TATTCATTTTTC/TTGTGTATAAAT...TTTAG|GAA 0 1 62.439
55033353 GT-AG 0 1.000000099473604e-05 80 rna-XM_008447197.2 10007554 10 7446274 7446353 Cucumis melo 3656 TCT|GTGAGTTCTT...TGATTATTAACA/TGATTATTAACA...TTTAG|GAA 0 1 69.384
55033354 GT-AG 0 4.500879217845506e-05 544 rna-XM_008447197.2 10007554 11 7445523 7446066 Cucumis melo 3656 CAG|GTCTTGCTTT...CGTTTCTTAGTT/TTCCATTTCACT...TTCAG|CTG 0 1 76.133
55033355 GT-AG 0 1.000000099473604e-05 934 rna-XM_008447197.2 10007554 12 7444508 7445441 Cucumis melo 3656 AAG|GTTAGTTGTT...TTTTCTTTGTTC/ACATTATTAAAA...CACAG|AAA 0 1 78.774
55033356 GT-AG 0 0.0015938638124186 269 rna-XM_008447197.2 10007554 13 7444037 7444305 Cucumis melo 3656 AAG|GTATTTGTTT...TATCTTTTGAAC/TCTTTGTTGATA...TGCAG|AGG 1 1 85.36
55036600 GT-AG 0 1.3697460676735052e-05 1044 rna-XM_008447197.2 10007554 1 7451241 7452284 Cucumis melo 3656 CTG|GTAGGTATTC...AAATCTTTATAA/TGGTTCTTCATG...CTTAG|GTC   0 5.217

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