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)

10 rows where transcript_id = 36995270

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
204419883 GT-AG 0 4.833560898613718e-05 96 rna-XM_038846100.1 36995270 1 9818545 9818640 Tripterygium wilfordii 458696 CCA|GTAAGTCTTT...CATGCTTAGACA/TCTCGTCTCAAG...TTTAG|TTG 2 1 1.965
204419884 GT-AG 0 0.4834264507953733 616 rna-XM_038846100.1 36995270 2 9818762 9819377 Tripterygium wilfordii 458696 CTT|GTATGCATTC...ATTTCTTCAATT/CATTTCTTCAAT...ACAAG|GAA 0 1 6.722
204419885 GT-AG 0 0.0011509769212315 666 rna-XM_038846100.1 36995270 3 9819675 9820340 Tripterygium wilfordii 458696 CTT|GTAAGCATTC...TATTCCTAATTC/TTTGGTTTCAAT...ACAAG|GAA 0 1 18.396
204419886 GT-AG 0 0.0024685844896753 88 rna-XM_038846100.1 36995270 4 9820852 9820939 Tripterygium wilfordii 458696 AAG|GTATAGTTAT...TCATTCTTAGTT/GTTCTTCTGATT...ACAAG|GAG 1 1 38.483
204419887 GT-AG 0 1.000000099473604e-05 118 rna-XM_038846100.1 36995270 5 9821134 9821251 Tripterygium wilfordii 458696 TTG|GTGAGGACAT...GATTCCTTCAAA/TCATGGCTCAGT...TACAG|GCT 0 1 46.108
204419888 GT-AG 0 1.000000099473604e-05 81 rna-XM_038846100.1 36995270 6 9821526 9821606 Tripterygium wilfordii 458696 AAG|GTGAGCATGC...CTCCCCTGAAAT/CGAATATTCACT...ACTAG|GTG 1 1 56.879
204419889 GT-AG 0 0.0016574610091413 146 rna-XM_038846100.1 36995270 7 9821723 9821868 Tripterygium wilfordii 458696 TTG|GTAAGCTTTC...GATTCCTTCAAT/CTTCAATTAATG...TACAG|AGA 0 1 61.439
204419890 GT-AG 0 2.210712868548777e-05 94 rna-XM_038846100.1 36995270 8 9822293 9822386 Tripterygium wilfordii 458696 GAG|GTACAGTATC...TAGTTGTTACCA/CCACTACTAATT...ACTAG|AAA 1 1 78.105
204419891 GT-AG 0 0.0003727268879096 68 rna-XM_038846100.1 36995270 9 9822569 9822636 Tripterygium wilfordii 458696 TTG|GTAAGTTTTT...TATTTTTTAATC/TATTTTTTAATC...TACAG|GAA 0 1 85.259
204419892 GT-AG 0 1.000000099473604e-05 96 rna-XM_038846100.1 36995270 10 9822917 9823012 Tripterygium wilfordii 458696 AAG|GTGAGAAAGA...TTGTCTTTCATC/TTGTCTTTCATC...GTCAG|GCA 1 1 96.266

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