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

✎ 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
143077748 GT-AG 0 0.0065034598954128 1093 rna-XM_025963015.1 25832523 1 4828993 4830085 Panicum hallii 206008 AAA|GTATGATCCT...GTGATCTTGACA/TATGGATTGATA...ATCAG|GTA 2 1 17.601
143077749 GT-AG 0 2.744704274468125e-05 199 rna-XM_025963015.1 25832523 2 4828476 4828674 Panicum hallii 206008 AAG|GTATGTAACT...GTTATCTTTTCA/TATCTTTTCATC...TACAG|GGC 2 1 23.21
143077750 GT-AG 0 0.0011055795765937 99 rna-XM_025963015.1 25832523 3 4828022 4828120 Panicum hallii 206008 CAG|GTATATGTTA...CTTTTTTGGACT/TAGGATTTTACT...TCCAG|AAA 0 1 29.471
143077751 GT-AG 0 1.000000099473604e-05 67 rna-XM_025963015.1 25832523 4 4827532 4827598 Panicum hallii 206008 AAG|GTAAGCCAGA...CTTCCTTTCAAG/GATTAGTTCATT...TGCAG|ATG 0 1 36.931
143077752 GT-AG 0 1.000000099473604e-05 82 rna-XM_025963015.1 25832523 5 4827157 4827238 Panicum hallii 206008 AGA|GTAAGACAAA...TAGTTTTTATCC/ATAGTTTTTATC...TGTAG|GTC 2 1 42.099
143077753 GT-AG 0 1.000000099473604e-05 156 rna-XM_025963015.1 25832523 6 4826727 4826882 Panicum hallii 206008 AAG|GTGGGAATCT...AGTGTTTTACTT/GAGTGTTTTACT...GACAG|GCT 0 1 46.931
143077754 GT-AG 0 1.000000099473604e-05 96 rna-XM_025963015.1 25832523 7 4826131 4826226 Panicum hallii 206008 TGC|GTAAGAACAT...ATGTTCTGATTC/AATGTTCTGATT...TGCAG|GCA 2 1 55.75
143077755 GT-AG 0 0.0017110410264225 143 rna-XM_025963015.1 25832523 8 4825666 4825808 Panicum hallii 206008 ACG|GTATGTATGA...TAACTTTTAAAA/TAAAATTTCATC...TACAG|GTT 0 1 61.429
143077756 GT-AG 0 0.1872793955950591 97 rna-XM_025963015.1 25832523 9 4825220 4825316 Panicum hallii 206008 CTG|GTATACTATT...CATGTTTTGATC/CATGTTTTGATC...TCCAG|GTC 1 1 67.584
143077757 GT-AG 0 1.000000099473604e-05 217 rna-XM_025963015.1 25832523 10 4824344 4824560 Panicum hallii 206008 CAG|GTAATATATA...CAATCTTTTCCT/CATGTACTCAAT...TGCAG|GGC 0 1 79.206
143090295 GT-AG 0 1.000000099473604e-05 93 rna-XM_025963015.1 25832523 11 4823466 4823558 Panicum hallii 206008 AAG|GTGAATTCTC...CGTGCCATATTT/GATTAATTTATT...TGCAG|CTA   0 93.051

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