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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, 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
99478831 GT-AG 0 1.000000099473604e-05 3025 Joasc.01G125000.1.v1.1 18637028 1 75672833 75675857 Joinvillea ascendens 38723 ATG|GTGAGTGGAA...TGTATCATAACA/TATGAATTCAAT...TACAG|ATA 0 1 2.649
99478832 GT-AG 0 1.3780775121656388e-05 3504 Joasc.01G125000.1.v1.1 18637028 2 75675935 75679438 Joinvillea ascendens 38723 GAT|GTAAGTACTT...TAGTTCTTTATT/ATATGTCTGACT...TGTAG|TGC 2 1 4.231
99478833 GT-AG 0 0.0009094762561965 1733 Joasc.01G125000.1.v1.1 18637028 3 75681572 75683304 Joinvillea ascendens 38723 AGT|GTAAGCCTTC...GTATTTTTACTG/TGATTATTCATT...TGTAG|GCA 2 1 48.039
99478834 GT-AG 0 1.000000099473604e-05 781 Joasc.01G125000.1.v1.1 18637028 4 75683780 75684560 Joinvillea ascendens 38723 GAG|GTTAGACCAT...TTTTGTTTGATG/TTTTGTTTGATG...TCTAG|GTA 0 1 57.794
99478835 GT-AG 0 0.0112639234586082 86 Joasc.01G125000.1.v1.1 18637028 5 75684670 75684755 Joinvillea ascendens 38723 AAG|GTATCTGTAT...GTGTTTTTATGG/AGTGTTTTTATG...TGTAG|GTG 1 1 60.033
99478836 GC-AG 0 1.000000099473604e-05 86 Joasc.01G125000.1.v1.1 18637028 6 75684869 75684954 Joinvillea ascendens 38723 AAG|GCAAGTGCTT...CTCTTTTTATCA/TGTTTTCTTATC...ATTAG|GTT 0 1 62.354
99478837 GT-AG 0 0.0005936648392276 1345 Joasc.01G125000.1.v1.1 18637028 7 75685137 75686481 Joinvillea ascendens 38723 AAG|GTATGTGTCT...TTTTTCTTTTCT/ATATATTTCATT...ACCAG|CAA 2 1 66.092
99478838 GT-AG 0 7.91917913433459e-05 84 Joasc.01G125000.1.v1.1 18637028 8 75686951 75687034 Joinvillea ascendens 38723 TAT|GTGTGTACCA...TGGATTTTAATT/TGGATTTTAATT...TGCAG|AAT 0 1 75.724
99478839 GT-AG 0 2.117740101454289 232 Joasc.01G125000.1.v1.1 18637028 9 75687516 75687747 Joinvillea ascendens 38723 CAG|GTATTCTTTC...ATATTCTTGACT/ATATTCTTGACT...TGCAG|GCC 1 1 85.603
99478840 GT-AG 0 0.0027146425738109 204 Joasc.01G125000.1.v1.1 18637028 10 75687907 75688110 Joinvillea ascendens 38723 GAG|GTATATTACT...CACTTTTTGAGC/CACTTTTTGAGC...ATCAG|GTT 1 1 88.868
99486180 GT-AG 0 5.959103035025058 226 Joasc.01G125000.1.v1.1 18637028 11 75688218 75688443 Joinvillea ascendens 38723 ATG|GTATCCCTCA...TTTCCTTTTATG/ACTGAATTCACT...TGCAG|CAC   0 91.066
99486181 GT-AG 0 0.0769364765297534 82 Joasc.01G125000.1.v1.1 18637028 12 75688489 75688570 Joinvillea ascendens 38723 ATG|GTATGCTATT...TTTGTTTTATCT/TTTTATCTGATC...TGTAG|GTC   0 91.99

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