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)

12 rows where transcript_id = 3395273

✎ 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
16698348 GT-AG 0 1.000000099473604e-05 491 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 1 19691 20181 Arenaria interpres 54971 ATG|GTAAGGCTTT...CCTTCCTTTTCT/TATAAACTCATC...TCCAG|GTG 0 1 5.405
16698349 GT-AG 0 1.4649832839166214e-05 1848 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 2 17723 19570 Arenaria interpres 54971 CAG|GTAACGGTTG...CCGACTATGATT/ACTATGATTATT...ACCAG|GTG 0 1 12.162
16698350 GT-AG 0 1.000000099473604e-05 888 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 3 16724 17611 Arenaria interpres 54971 GAG|GTGAGTGGCA...TCCTCTTTGATT/TCCTCTTTGATT...GAGAG|AAG 0 1 18.412
16698351 GT-AG 0 1.000000099473604e-05 611 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 4 15996 16606 Arenaria interpres 54971 GCG|GTAAGGCGCT...GCTCTCGTCATT/GCTCTCGTCATT...CTCAG|GTA 0 1 25.0
16698352 GT-AG 0 1.000000099473604e-05 164 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 5 15714 15877 Arenaria interpres 54971 GAG|GTAAGCGTAA...CTCGTGTTGACG/CTCGTGTTGACG...TGCAG|GAG 1 1 31.644
16698353 GT-AG 0 4.251844710016882e-05 555 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 6 15035 15589 Arenaria interpres 54971 TCT|GTAAGTGTCT...TTGTCTTTTTCC/GGTTGCCTAATA...AACAG|GGA 2 1 38.626
16698354 GT-AG 0 1.000000099473604e-05 599 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 7 14371 14969 Arenaria interpres 54971 GAA|GTGAGTACGG...TTTGTTTTCCTG/GAGGTGCTGAGG...TGCAG|ATG 1 1 42.286
16698355 GT-AG 0 1.000000099473604e-05 296 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 8 13947 14242 Arenaria interpres 54971 GAG|GTGAGCTCAG...CCTTTCTGAGCT/GCCTTTCTGAGC...TGTAG|CTG 0 1 49.493
16698356 GT-AG 0 1.000000099473604e-05 766 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 9 13009 13774 Arenaria interpres 54971 TGG|GTGAGGTCAC...GCCTCTTTCGCT/TCCCCGCTTACT...TGAAG|ATT 1 1 59.178
16698357 GT-AG 0 1.0697997155748109e-05 612 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 10 12295 12906 Arenaria interpres 54971 GCC|GTAAGTGCTT...GGTGTCTTTTTT/TGCTACTTCAAG...CTCAG|GGG 1 1 64.921
16698358 GT-AG 0 0.0004244885818637 471 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 11 11690 12160 Arenaria interpres 54971 AAG|GTCTCTGGTA...GACCTTCTAACC/GCCTGTCTGACC...TGTAG|GTA 0 1 72.466
16698359 GT-AG 0 1.000000099473604e-05 1285 rna-gnl|WGS:VXAK|AREINT_R11895_mrna 3395273 12 10122 11406 Arenaria interpres 54971 AAG|GTAAGGGCGC...CCTTCCTTTTCT/TCCTTTTCTATC...TGCAG|TTA 1 1 88.401

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