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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
21287066 GT-AG 0 1.000000099473604e-05 115 rna-XM_006676155.1 4118566 1 278766 278880 Batrachochytrium dendrobatidis 109871 CTG|GTGAGTGTAA...TATATCTTGATA/CAAATTCTAATA...ACCAG|TGC 0 1 24.859
21287067 GT-AG 0 0.2159681437758903 76 rna-XM_006676155.1 4118566 2 278201 278276 Batrachochytrium dendrobatidis 109871 GAG|GTATCTATAT...AAACTCTTGGTA/AATTTAATGACT...CTTAG|CTT 0 1 40.15
21287068 GT-AG 0 0.0028163912108448 85 rna-XM_006676155.1 4118566 3 278013 278097 Batrachochytrium dendrobatidis 109871 CTG|GTATACAACT...TTTCTGTTGAAT/TAATAGTTTATT...TGTAG|ACG 1 1 43.371
21287069 GT-AG 0 0.0010529123459447 41 rna-XM_006676155.1 4118566 4 277836 277876 Batrachochytrium dendrobatidis 109871 GTT|GTATGTGTGG...TATGCGATGATT/TATTGACTAACA...TACAG|CTT 2 1 47.624
21287070 GT-AG 0 1.2241727942249333e-05 76 rna-XM_006676155.1 4118566 5 277512 277587 Batrachochytrium dendrobatidis 109871 TGG|GTAAATACCA...CGGTTTTTATCA/ACGGTTTTTATC...AATAG|ACG 1 1 55.378
21287071 GT-AG 0 1.000000099473604e-05 59 rna-XM_006676155.1 4118566 6 277341 277399 Batrachochytrium dendrobatidis 109871 AGA|GTGAGTTGAA...TGGGTTTTAAAC/TGGGTTTTAAAC...AATAG|CGA 2 1 58.881
21287072 GT-AG 0 1.5408998919766574e-05 91 rna-XM_006676155.1 4118566 7 277097 277187 Batrachochytrium dendrobatidis 109871 AGT|GTTTTGGACA...TCTGTTTTATAT/TTGTAACTCATA...AACAG|ACG 2 1 63.665
21287073 GT-AG 0 0.0001498866562577 71 rna-XM_006676155.1 4118566 8 276925 276995 Batrachochytrium dendrobatidis 109871 AAG|GTATAATGAA...TGATCTTTTACA/CATATATTTATT...TTTAG|AAA 1 1 66.823
21287074 GT-AG 0 3.77859956216342e-05 102 rna-XM_006676155.1 4118566 9 276800 276901 Batrachochytrium dendrobatidis 109871 AAA|GTAAGCCACT...TTGTCATTATTC/ATTATTCTAATT...AGTAG|CAT 0 1 67.542
21287075 GT-AG 0 1.000000099473604e-05 87 rna-XM_006676155.1 4118566 10 276439 276525 Batrachochytrium dendrobatidis 109871 CAA|GTAAAGGGTA...TTTGTTTTGAAA/TTTGTTTTGAAA...TATAG|GCA 1 1 76.11
21287076 GT-AG 0 1.000000099473604e-05 90 rna-XM_006676155.1 4118566 11 276252 276341 Batrachochytrium dendrobatidis 109871 ATG|GTAAGTCGAA...CATACCATATTT/CTGCATTTGAAT...AATAG|TCC 2 1 79.143
21287077 GT-AG 0 0.0001129450459828 81 rna-XM_006676155.1 4118566 12 275838 275918 Batrachochytrium dendrobatidis 109871 TCG|GTATGGTATT...GATGTTCTATTG/TGGGTTGTCACT...CATAG|TGA 2 1 89.556
21287078 GT-AG 0 0.0004195141302632 92 rna-XM_006676155.1 4118566 13 275599 275690 Batrachochytrium dendrobatidis 109871 CCA|GTAAGCTACC...GTGATTTTACCA/TGTGATTTTACC...TATAG|GGC 2 1 94.153

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