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

✎ 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
151209591 GT-AG 0 0.0716153406611713 102 rna-XM_020728700.1 27151054 2 17850787 17850888 Phalaenopsis equestris 78828 GCC|GTAAGCTTGA...TTCTCTTTAACG/TTGTTGTTAACT...ATTAG|GTT 1 1 6.176
151209592 GT-AG 0 1.000000099473604e-05 490 rna-XM_020728700.1 27151054 3 17848273 17848762 Phalaenopsis equestris 78828 GTG|GTAAAAGCCT...AATTTTTTACAC/AAATTTTTTACA...TGCAG|ATT 0 1 49.13
151209593 GT-AG 0 0.0001631393320647 322 rna-XM_020728700.1 27151054 4 17847630 17847951 Phalaenopsis equestris 78828 AAT|GTAAGCAAGA...TTATTTTTAATT/TTATTTTTAATT...TGCAG|GAT 0 1 55.942
151209594 GT-AG 0 0.0003025984137554 516 rna-XM_020728700.1 27151054 5 17847027 17847542 Phalaenopsis equestris 78828 TTG|GTCTGTTCTC...GTCTCTTTGCCC/CATTATTTAAAA...TGCAG|TTA 0 1 57.789
151209595 GT-AG 0 1.000000099473604e-05 189 rna-XM_020728700.1 27151054 6 17846244 17846432 Phalaenopsis equestris 78828 CGG|GTTAATTTCT...CATTCCTACATA/AGTTGGCTCATT...CACAG|GTC 0 1 70.395
151209596 GT-AG 0 3.466303935258292e-05 695 rna-XM_020728700.1 27151054 7 17845384 17846078 Phalaenopsis equestris 78828 CAG|GTATTTAAGA...TTGTAGTTGATT/TTGTAGTTGATT...TACAG|GCC 0 1 73.896
151209597 GT-AG 0 1.000000099473604e-05 256 rna-XM_020728700.1 27151054 8 17844833 17845088 Phalaenopsis equestris 78828 CCG|GTGTGTCGCG...TTTCCCTTTGTT/TTGTTTCTGATG...TGCAG|GAT 1 1 80.157
151209598 GT-AG 0 0.0035908975135005 547 rna-XM_020728700.1 27151054 9 17844071 17844617 Phalaenopsis equestris 78828 AAG|GTATTTATTA...AAATCCTAAGTA/ATGATCCTAAAG...AACAG|GTA 0 1 84.72
151209599 GT-AG 0 0.0262539391611864 1381 rna-XM_020728700.1 27151054 10 17842384 17843764 Phalaenopsis equestris 78828 GAG|GTACTTTTTC...TCATCCTTAAAT/TTCCTATTTACA...ACAAG|GTT 0 1 91.214
151209600 GT-AG 0 0.000200912763781 83 rna-XM_020728700.1 27151054 11 17842237 17842319 Phalaenopsis equestris 78828 TAG|GTAGATTCCT...TCCATCTTAAAC/CCATTATTTACA...TCCAG|TTG 1 1 92.572
151209601 GT-AG 0 3.54705680632833e-05 1826 rna-XM_020728700.1 27151054 12 17840171 17841996 Phalaenopsis equestris 78828 ATG|GTATGTGCTG...TATATCATACTA/ATCATACTAATT...TGCAG|GTA 1 1 97.666
151220761 GT-AG 0 1.000000099473604e-05 4504 rna-XM_020728700.1 27151054 1 17851037 17855540 Phalaenopsis equestris 78828 GAG|GTAATTCAGT...AAGTTTTTGATT/AAGTTTTTGATT...TTCAG|AAG   0 5.836

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