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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
18022502 GT-AG 0 0.0454436385804371 2388 rna-XM_020385726.1 3611955 1 17116107 17118494 Asparagus officinalis 4686 AAG|GTATTCAGTT...TTTTTTTTAAAA/TTTTTTTTAAAA...TTTAG|CTA 0 1 27.215
18022503 GT-AG 0 9.56839605372978e-05 196 rna-XM_020385726.1 3611955 2 17118690 17118885 Asparagus officinalis 4686 GAG|GTATTTGATA...AAATCATTAAAA/CATATGTTTATG...TGTAG|GGA 0 1 33.151
18022504 GT-AG 0 1.000000099473604e-05 1233 rna-XM_020385726.1 3611955 3 17119051 17120283 Asparagus officinalis 4686 GAG|GTAATGTTTA...AATGTCTTTCTA/CTTTGGATAACT...ATCAG|GTT 0 1 38.174
18022505 GT-AG 0 2.8641250569876445e-05 268 rna-XM_020385726.1 3611955 4 17120383 17120650 Asparagus officinalis 4686 TGG|GTAAGCATAT...TTGGCCTGGATG/CAATAGTTTATG...TGCAG|ATT 0 1 41.187
18022506 GT-AG 0 9.973754921875631e-05 458 rna-XM_020385726.1 3611955 5 17120903 17121360 Asparagus officinalis 4686 GAG|GTAATTATTG...TATGTCTTAATT/TCTATTTTAACT...TTCAG|TTC 0 1 48.858
18022507 GT-AG 0 1.000000099473604e-05 67 rna-XM_020385726.1 3611955 6 17121616 17121682 Asparagus officinalis 4686 GAG|GTAGAAAATT...TAACTCTTCGCA/CTTGTGTTAAAT...CATAG|GTT 0 1 56.621
18022508 GT-AG 0 1.000000099473604e-05 516 rna-XM_020385726.1 3611955 7 17121815 17122330 Asparagus officinalis 4686 GAG|GTGCTCCTTT...GAGGTTCTAACT/GAGGTTCTAACT...CTTAG|GTG 0 1 60.639
18022509 GT-AG 0 3.180640502319623e-05 110 rna-XM_020385726.1 3611955 8 17122592 17122701 Asparagus officinalis 4686 CTG|GTACAGTATG...ATGTTATTGATT/ATGTTATTGATT...TACAG|AAT 0 1 68.584
18022510 GT-AG 0 1.000000099473604e-05 649 rna-XM_020385726.1 3611955 9 17122774 17123422 Asparagus officinalis 4686 CCA|GTAAGTCAAA...TCACCATTGACA/CATTTAGTCACC...TGCAG|GTT 0 1 70.776
18022511 GT-AG 0 1.7926709655183576e-05 237 rna-XM_020385726.1 3611955 10 17123573 17123809 Asparagus officinalis 4686 CAG|GTGTATATAT...CTTCTTTTATTT/CTTTTATTTATA...ACTAG|GTT 0 1 75.342
18022512 GT-AG 0 1.000000099473604e-05 7009 rna-XM_020385726.1 3611955 11 17124305 17131313 Asparagus officinalis 4686 CAG|GTCAGTTGCA...TCTTTTTTCATT/TCTTTTTTCATT...TGCAG|CTG 0 1 90.411
18022513 GC-AG 0 1.000000099473604e-05 55 rna-XM_020385726.1 3611955 12 17131393 17131447 Asparagus officinalis 4686 ATC|GCAAGAGCAG...GCTGCCATGGCA/GCAGATGTGAAT...AGCAG|GTG 1 1 92.816

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