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

✎ 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
21481216 GT-AG 0 4.4107844047710464e-05 190 rna-XM_039024245.1 4157769 2 29193684 29193873 Benincasa hispida 102211 AAT|GTAAGTTATG...TCTATATTGATT/TCTATATTGATT...CACAG|ATT 0 1 50.629
21481217 GT-AG 0 5.258274494083509e-05 85 rna-XM_039024245.1 4157769 3 29193278 29193362 Benincasa hispida 102211 AAT|GTAATTCTCA...TTTTTCTTTCTA/TTTCTATTTACT...GGCAG|GGA 0 1 57.249
21481218 GT-AG 0 1.000000099473604e-05 425 rna-XM_039024245.1 4157769 4 29192766 29193190 Benincasa hispida 102211 CTG|GTTAGTACAA...AGCTCTTTGAAT/TGAATTCTCATT...GGCAG|CTG 0 1 59.043
21481219 GT-AG 0 0.0003803258399896 78 rna-XM_039024245.1 4157769 5 29192100 29192177 Benincasa hispida 102211 CGG|GTAAACATCT...ATTTCTTTATCC/AGTTTTCTTATA...TATAG|GTC 0 1 71.169
21481220 GT-AG 0 1.000000099473604e-05 265 rna-XM_039024245.1 4157769 6 29191670 29191934 Benincasa hispida 102211 CAG|GTAATACTGA...AAGTCTTTGCTT/TCGCTTTTCATC...TGCAG|AGA 0 1 74.572
21481221 GT-AG 0 1.000000099473604e-05 87 rna-XM_039024245.1 4157769 7 29191288 29191374 Benincasa hispida 102211 CTG|GTGTGGATTT...ACATTCTTAAAT/ACATTCTTAAAT...TGCAG|GTT 1 1 80.656
21481222 GT-AG 0 1.000000099473604e-05 76 rna-XM_039024245.1 4157769 8 29190997 29191072 Benincasa hispida 102211 AAG|GTAAGTAATA...CTGACCATGATC/AGAAAACTGACC...TACAG|ATT 0 1 85.09
21481223 GT-AG 0 1.000000099473604e-05 82 rna-XM_039024245.1 4157769 9 29190609 29190690 Benincasa hispida 102211 GAG|GTGATGCTTT...CTGTCTTTGATT/TTAATATTTACT...TGCAG|GTA 0 1 91.4
21481224 GT-AG 0 0.0004587732945754 95 rna-XM_039024245.1 4157769 10 29190450 29190544 Benincasa hispida 102211 TGG|GTAATCATTT...TTTCTCCTAGTT/CAGTGCCTGATA...ACCAG|TTG 1 1 92.72
21481225 GT-AG 0 0.0001075740901271 252 rna-XM_039024245.1 4157769 11 29189958 29190209 Benincasa hispida 102211 ATG|GTAAGTTTTG...AAGGCTTTGATA/AGTTTTCTTATG...TTCAG|GGA 1 1 97.67
21490848 GT-AG 0 0.0005321328872607 347 rna-XM_039024245.1 4157769 1 29195940 29196286 Benincasa hispida 102211 GAG|GTTTGTTCTT...GTCCTCTTATTA/CTCTTATTAACT...TTCAG|AGA   0 8.435

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