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

✎ 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
183116347 GT-AG 0 1.000000099473604e-05 224 rna-XM_011087339.2 32739451 2 14450769 14450992 Sesamum indicum 4182 AAG|GTGGGGTTTG...TTTTCTTTGAAA/TTATTTTTTATT...TGTAG|TTC 2 1 5.911
183116348 GT-AG 0 0.0011678101342417 209 rna-XM_011087339.2 32739451 3 14450432 14450640 Sesamum indicum 4182 ACG|GTACGCCATT...TGTTCTTTATTT/TTTTATTTTATT...TTTAG|GAT 1 1 8.239
183116349 GT-AG 0 1.000000099473604e-05 136 rna-XM_011087339.2 32739451 4 14450116 14450251 Sesamum indicum 4182 AAG|GTATGGCATA...CTGTCTATAGTT/TATAGTTTCAAT...CTTAG|CTC 1 1 11.513
183116350 GT-AG 0 1.000000099473604e-05 107 rna-XM_011087339.2 32739451 5 14449935 14450041 Sesamum indicum 4182 CAG|GTACTTGAAG...TGGTTCTTAAGG/CTGGTTCTTAAG...TGTAG|GTA 0 1 12.859
183116351 GT-AG 0 1.000000099473604e-05 315 rna-XM_011087339.2 32739451 6 14449563 14449877 Sesamum indicum 4182 CAG|GTTGTGTGGA...AATGGTTTGACT/AATGGTTTGACT...ATTAG|GCA 0 1 13.896
183116352 GT-AG 0 1.000000099473604e-05 139 rna-XM_011087339.2 32739451 7 14448638 14448776 Sesamum indicum 4182 CAG|GTTAATTTAT...TTTCCCTTGTTT/ATTATTTTAAAA...TGCAG|GTG 0 1 28.192
183116353 GT-AG 0 0.0047274841987289 81 rna-XM_011087339.2 32739451 8 14448281 14448361 Sesamum indicum 4182 CAG|GTATTTTTTT...TTGAGCATGATT/ATGTAATTGAGC...ATCAG|TTT 0 1 33.212
183116354 GT-AG 0 0.0035258314113849 2233 rna-XM_011087339.2 32739451 9 14442902 14445134 Sesamum indicum 4182 CAG|GTATTTTTGG...TTCTCCTTTCAG/TCTCCTTTCAGT...TCCAG|TGC 2 1 90.433
183116355 GT-AG 0 0.0010317591947956 95 rna-XM_011087339.2 32739451 10 14442612 14442706 Sesamum indicum 4182 AGG|GTATGATAGG...TTCTTTTTAACC/TTCTTTTTAACC...AACAG|GTT 2 1 93.98
183125145 GT-AG 0 0.0017154559094441 142 rna-XM_011087339.2 32739451 1 14451224 14451365 Sesamum indicum 4182 CAG|GTAGACTATG...ATGTTTTTGATT/ATGTTTTTGATT...GGTAG|ATC   0 2.983

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