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)

13 rows where transcript_id = 23121127

✎ 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
125746425 GT-AG 0 0.0004972576488129 3321 rna-XM_010279869.2 23121127 2 5550614 5553934 Nelumbo nucifera 4432 CAG|GTACCACTCC...GCATTATTAGTT/TAGTTACTGATA...TGCAG|GTT 2 1 11.417
125746426 GT-AG 0 0.0004136594118249 131 rna-XM_010279869.2 23121127 3 5554163 5554293 Nelumbo nucifera 4432 TCG|GTCTGTTTCC...CTGATGTTATCT/CGTTTGCTGATG...AACAG|GTA 2 1 20.272
125746427 GT-AG 0 4.049733211228401e-05 1046 rna-XM_010279869.2 23121127 4 5554358 5555403 Nelumbo nucifera 4432 CAT|GTAATATTCA...TTTCTGTTATTA/TCTGTTATTATT...ACCAG|GCC 0 1 22.757
125746428 GT-AG 0 1.6335621281883804e-05 855 rna-XM_010279869.2 23121127 5 5555744 5556598 Nelumbo nucifera 4432 TTG|GTAAGTTTGT...AATGATTTAGCT/TAGCTATTTATG...TACAG|GTT 1 1 35.961
125746429 GT-AG 0 1.000000099473604e-05 2430 rna-XM_010279869.2 23121127 6 5556895 5559324 Nelumbo nucifera 4432 AAG|GTAGAAAATT...TGTTTCTTAATT/TTTATGTTTATT...TGCAG|ATT 0 1 47.456
125746430 GT-AG 0 1.239429168594775e-05 21278 rna-XM_010279869.2 23121127 7 5559406 5580683 Nelumbo nucifera 4432 ATT|GTAAGTCATT...CAAGTCTTGAGA/GAGAGTTTAAGT...AACAG|GTA 0 1 50.602
125746431 GT-AG 0 0.0001036693747989 1205 rna-XM_010279869.2 23121127 8 5580783 5581987 Nelumbo nucifera 4432 CTG|GTATAAATCA...CATTTTTCAACA/TTTGTACTGATG...TACAG|GAG 0 1 54.447
125746432 GT-AG 0 1.000000099473604e-05 257 rna-XM_010279869.2 23121127 9 5582210 5582466 Nelumbo nucifera 4432 GAG|GTTAGCCATG...ATATTTCTAACA/ATATTTCTAACA...GATAG|GGA 0 1 63.068
125746433 GT-AG 0 1.000000099473604e-05 5067 rna-XM_010279869.2 23121127 10 5582656 5587722 Nelumbo nucifera 4432 TTG|GTAAGAATTT...TTTTCCTGATTC/ATTTTCCTGATT...GATAG|CAT 0 1 70.408
125746434 GT-AG 0 71.54335911852083 103 rna-XM_010279869.2 23121127 11 5587799 5587901 Nelumbo nucifera 4432 CAG|GTATCCTTCT...TTTGTCTTACCA/TTTTGTCTTACC...AATAG|ATA 1 1 73.359
125746435 GT-AG 0 0.0021602787100022 32254 rna-XM_010279869.2 23121127 12 5588197 5620450 Nelumbo nucifera 4432 CAG|GTATTATTGA...ATAATTTTGACA/ATAATTTTGACA...CGCAG|ATG 2 1 84.816
125746436 GT-AG 0 0.0167179546727995 288 rna-XM_010279869.2 23121127 13 5620573 5620860 Nelumbo nucifera 4432 GAG|GTATCAAGTT...AAGTTGTTGACG/AAGTTGTTGACG...CACAG|ATA 1 1 89.553
125748237 GT-AG 0 3.652797959465739e-05 286 rna-XM_010279869.2 23121127 1 5550130 5550415 Nelumbo nucifera 4432 CTT|GTAAGTCCTC...GGTGTTTTGATC/GGTGTTTTGATC...TGTAG|GAT   0 3.767

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