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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
120102376 GT-AG 0 2.9738122870388643e-05 627 rna-XM_036387920.1 22173083 1 13564859 13565485 Molothrus ater 84834 CGG|GTAACGGGGC...TTTTTTTTATTA/CTTTTTTTTATT...GTTAG|TGC 2 1 0.829
120102377 GT-AG 0 1.000000099473604e-05 4938 rna-XM_036387920.1 22173083 2 13559757 13564694 Molothrus ater 84834 CAG|GTAATAAAAC...AATTTTTTATAT/CAAATGTTTACA...TCTAG|ATG 1 1 2.358
120102378 GT-AG 0 1.000000099473604e-05 1256 rna-XM_036387920.1 22173083 3 13549237 13550492 Molothrus ater 84834 TGG|GTAAGTGCTT...TTCTCTGTGAAA/AAAATAATGACT...TTTAG|ACA 1 1 88.687
120102379 GT-AG 0 1.000000099473604e-05 1455 rna-XM_036387920.1 22173083 4 13547621 13549075 Molothrus ater 84834 GAG|GTGAGGGGGA...TCTGGTTTATTT/CTCTGGTTTATT...TTCAG|AAA 0 1 90.187
120102380 GT-AG 0 1.000000099473604e-05 1320 rna-XM_036387920.1 22173083 5 13546160 13547479 Molothrus ater 84834 AGT|GTGAGTGCTA...CTCATTTTATTT/CTTCTTCTCATT...TTCAG|ACT 0 1 91.501
120102381 GT-AG 0 1.000000099473604e-05 4127 rna-XM_036387920.1 22173083 6 13541841 13545967 Molothrus ater 84834 GAG|GTAAGGAAGG...GTTTTTTCAAAT/TGTTTTTTCAAA...CCTAG|TGT 0 1 93.29
120102382 GT-AG 0 1.000000099473604e-05 496 rna-XM_036387920.1 22173083 7 13541234 13541729 Molothrus ater 84834 CAG|GTGAGCTGGG...CTGGTCTCAGTG/GCTGGTCTCAGT...TGCAG|ATC 0 1 94.325
120102383 GT-AG 0 1.000000099473604e-05 6590 rna-XM_036387920.1 22173083 8 13534527 13541116 Molothrus ater 84834 AAG|GTAGAAGTGA...CTTGTTTTACTT/CCTTGTTTTACT...GATAG|GAT 0 1 95.415
120102384 GT-AG 0 1.000000099473604e-05 4014 rna-XM_036387920.1 22173083 9 13530365 13534378 Molothrus ater 84834 AAG|GTGAGTCCTG...GTCATCGTGCCT/GGGAATGTCATC...TGCAG|GCC 1 1 96.794
120102385 GT-AG 0 1.000000099473604e-05 74 rna-XM_036387920.1 22173083 10 13530222 13530295 Molothrus ater 84834 CAG|GTGAGTTCCC...TGGGCACTGACC/TGGGCACTGACC...GCCAG|GGA 1 1 97.437
120102386 GT-AG 0 1.000000099473604e-05 708 rna-XM_036387920.1 22173083 11 13529398 13530105 Molothrus ater 84834 AAG|GTGGGTCTGG...CCCTCGCTAACC/CCCTCGCTAACC...GCCAG|GTG 0 1 98.518

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