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)

11 rows where transcript_id = 22773499

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
123545389 GT-AG 0 7.269375066040026e-05 708 Myper.0001s1355.1.v2.1 22773499 2 7972564 7973271 Myagrum perfoliatum 359867 AAT|GTAAGCCTTC...AAATCTTAATAT/ATTGTTCTCATG...TGTAG|AGT 2 1 13.103
123545390 GT-AG 0 1.000000099473604e-05 115 Myper.0001s1355.1.v2.1 22773499 3 7972346 7972460 Myagrum perfoliatum 359867 AAG|GTAATCAGAT...TAGACCTCAGCC/ACTTTGCTCATC...CTCAG|GGT 0 1 15.776
123545391 GT-AG 0 1.000000099473604e-05 230 Myper.0001s1355.1.v2.1 22773499 4 7971995 7972224 Myagrum perfoliatum 359867 CAG|GTAATAAGAA...ATGCCTTTAATC/TTTAAAATCATT...TACAG|CAG 1 1 18.915
123545392 GT-AG 0 0.0032442640993647 122 Myper.0001s1355.1.v2.1 22773499 5 7970733 7970854 Myagrum perfoliatum 359867 CTA|GTACGTTTCC...ATGATATTAACT/ATGATATTAACT...TGTAG|CAT 1 1 48.495
123545393 GT-AG 0 3.604161968144739 122 Myper.0001s1355.1.v2.1 22773499 6 7970540 7970661 Myagrum perfoliatum 359867 AAG|GTATCTTGGC...TTTCTTTTAATA/CTTTTTATCATT...TGCAG|ATA 0 1 50.337
123545394 GT-AG 0 5.954626555974273e-05 82 Myper.0001s1355.1.v2.1 22773499 7 7970383 7970464 Myagrum perfoliatum 359867 GAG|GTACTTCATT...TTTATTTTACTT/ATTTTACTTATA...TCCAG|GTC 0 1 52.283
123545395 GT-AG 0 1.000000099473604e-05 86 Myper.0001s1355.1.v2.1 22773499 8 7969253 7969338 Myagrum perfoliatum 359867 GCG|GTGAGTGAAC...CTTTTGTTAATG/GATTTACTGATC...TCTAG|TTT 0 1 79.372
123545396 GT-AG 0 1.000000099473604e-05 95 Myper.0001s1355.1.v2.1 22773499 9 7968843 7968937 Myagrum perfoliatum 359867 GAG|GTAAAATATA...CATCTCTCAATC/CCATCTCTCAAT...TGCAG|CAG 0 1 87.545
123545397 GT-AG 0 8.45375922604189e-05 95 Myper.0001s1355.1.v2.1 22773499 10 7968565 7968659 Myagrum perfoliatum 359867 ATC|GTAAGTGTCT...CTTTGCTTAGCT/TAGCTATTTATG...TGCAG|TCA 0 1 92.294
123545398 GT-AG 0 1.000000099473604e-05 79 Myper.0001s1355.1.v2.1 22773499 11 7968400 7968478 Myagrum perfoliatum 359867 CAG|GTATGAAACT...ACGAATTTAATC/ACGAATTTAATC...TTCAG|TGT 2 1 94.525
123555900 GT-AG 0 0.0028218678390842 395 Myper.0001s1355.1.v2.1 22773499 1 7973401 7973795 Myagrum perfoliatum 359867 CTG|GTACACTGTT...ATGTCTCTGATT/ATGTCTCTGATT...GCTAG|GCT   0 10.016

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