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

✎ 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
55033088 GT-AG 0 1.000000099473604e-05 1244 rna-XM_008448189.2 10007529 1 3865613 3866856 Cucumis melo 3656 CAG|GTTATATAAC...TAACTCTTATTT/TCTTATTTCACT...AACAG|GGG 1 1 9.274
55033089 GT-AG 0 0.6880385323632504 97 rna-XM_008448189.2 10007529 2 3867007 3867103 Cucumis melo 3656 CTT|GTATTTTGCT...TATTCTTTATAA/TTATTCTTTATA...CGCAG|TTG 1 1 13.366
55033090 GT-AG 0 4.96559235497538e-05 89 rna-XM_008448189.2 10007529 3 3867226 3867314 Cucumis melo 3656 AAG|GTACGTACGG...AATTTCTTAATT/AATTTCTTAATT...TTCAG|GGT 0 1 16.694
55033091 GT-AG 0 0.0002439269040016 114 rna-XM_008448189.2 10007529 4 3867526 3867639 Cucumis melo 3656 TTG|GTTTGTTCAC...CTTCCATTAATT/TTGATTATAACT...TGCAG|ACT 1 1 22.45
55033092 GT-AG 0 4.797387016524029e-05 183 rna-XM_008448189.2 10007529 5 3867887 3868069 Cucumis melo 3656 TTA|GTAAGTATTT...GCATCTTTTACA/TAAATTGTCATT...TTTAG|TGG 2 1 29.187
55033093 GT-AG 0 0.0005473523705943 97 rna-XM_008448189.2 10007529 6 3868221 3868317 Cucumis melo 3656 TAC|GTAAGTTTTC...AACTCCTAAATC/AAACTCCTAAAT...TCTAG|GCT 0 1 33.306
55033094 GT-TC 0 1.000000099473604e-05 2735 rna-XM_008448189.2 10007529 7 3868651 3871385 Cucumis melo 3656 AAA|GTTTGACAGG...ACTTACTTGACT/ACTTACTTGACT...GATTC|ATT 0 1 42.39
55033095 GT-AG 0 0.0003043600322959 77 rna-XM_008448189.2 10007529 8 3872314 3872390 Cucumis melo 3656 CTG|GTAATCTTCA...ATAATGTTATTT/TGTTATTTAAGT...AACAG|GGG 1 1 67.703
55033096 GT-AG 0 0.0050960414948604 99 rna-XM_008448189.2 10007529 9 3872529 3872627 Cucumis melo 3656 GTG|GTACTTTCTT...GAGTTCTTATAC/TTATGATTTATT...TGCAG|TTG 1 1 71.468
55033097 GT-AG 0 0.0123428397035563 105 rna-XM_008448189.2 10007529 10 3872750 3872854 Cucumis melo 3656 AAG|GTATCAATCA...GGTATTTTGAAA/TGTATGTTTATA...TTCAG|GGT 0 1 74.795
55033098 GT-AG 0 6.637789315509439e-05 100 rna-XM_008448189.2 10007529 11 3873066 3873165 Cucumis melo 3656 TTG|GTTCGTTCTT...TATGTTTTGATT/TATGTTTTGATT...TGTAG|ATC 1 1 80.551
55033099 GT-AG 0 0.0007025647331248 111 rna-XM_008448189.2 10007529 12 3873407 3873517 Cucumis melo 3656 CTA|GTAAGTTTTT...TCATTATTAACT/TCATTATTAACT...TTCAG|TGG 2 1 87.125
55033100 GT-AG 0 1.000000099473604e-05 91 rna-XM_008448189.2 10007529 13 3873669 3873759 Cucumis melo 3656 TAT|GTAAGTCAAT...ACACTCTTGTTT/GGAAGTTTCAAA...ATTAG|GCT 0 1 91.244

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