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

✎ 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
132129900 GT-AG 0 6.381573607462574e-05 1211 rna-XM_031632140.1 24215997 1 24551774 24552984 Nymphaea colorata 210225 AAG|GTATGTGCTC...TAAGTTTTATTG/CTAAGTTTTATT...AACAG|GGT 0 1 4.344
132129901 GT-AG 0 1.000000099473604e-05 179 rna-XM_031632140.1 24215997 2 24553064 24553242 Nymphaea colorata 210225 ATG|GTAATAAAGT...TTGTACTTATAT/TTTGTACTTATA...TTCAG|GGG 1 1 6.544
132129902 GT-AG 0 1.000000099473604e-05 93 rna-XM_031632140.1 24215997 3 24553942 24554034 Nymphaea colorata 210225 ATG|GTGAAATTTC...GCTTCCTCATTT/ATGTGTTTAATC...TGCAG|GTT 1 1 26.009
132129903 GT-AG 0 1.000000099473604e-05 235 rna-XM_031632140.1 24215997 4 24554100 24554334 Nymphaea colorata 210225 AAT|GTAAGTGCAG...ATCTGTTTAACT/ATCTGTTTAACT...TGCAG|GTT 0 1 27.82
132129904 GT-AG 0 1.000000099473604e-05 93 rna-XM_031632140.1 24215997 5 24554447 24554539 Nymphaea colorata 210225 CTA|GTAAGACTAT...GTTCTTTTGACA/TTAACTTTCACA...TACAG|ATT 1 1 30.938
132129905 GT-AG 0 0.2989835019272729 886 rna-XM_031632140.1 24215997 6 24554749 24555634 Nymphaea colorata 210225 CAG|GTATCCACAG...TAAACTTTATAT/ATAAACTTTATA...TGCAG|GAT 0 1 36.759
132129906 GT-AG 0 1.000000099473604e-05 90 rna-XM_031632140.1 24215997 7 24555707 24555796 Nymphaea colorata 210225 CAG|GTGAGTTATT...ATAGTGTTGATT/ATAGTGTTGATT...TACAG|CGT 0 1 38.764
132129907 GT-AG 0 1.000000099473604e-05 107 rna-XM_031632140.1 24215997 8 24555875 24555981 Nymphaea colorata 210225 CAG|GTAAAATATT...ATGTATTTAGCT/TATGTATTTAGC...GACAG|GGA 0 1 40.936
132129908 GT-AG 0 1.000000099473604e-05 1813 rna-XM_031632140.1 24215997 9 24556877 24558689 Nymphaea colorata 210225 AAG|GTGGGTTGTT...GTGGCCTTATTA/ATATTTGTTATT...TCTAG|GAA 1 1 65.859
132129909 GT-AG 0 0.0113290825734976 641 rna-XM_031632140.1 24215997 10 24558821 24559461 Nymphaea colorata 210225 AAG|GTATTTCTTT...TCTTTTTTGATA/TCTTTTTTGATA...TTCAG|GTT 0 1 69.507
132129910 GT-AG 0 0.0020901811004793 712 rna-XM_031632140.1 24215997 11 24559684 24560395 Nymphaea colorata 210225 AAT|GTATGGATTT...CTTCTCTTATTT/TCTTCTCTTATT...TTCAG|GAC 0 1 75.689
132129911 GT-AG 0 1.848487398444965e-05 520 rna-XM_031632140.1 24215997 12 24560954 24561473 Nymphaea colorata 210225 GAG|GTTTGATAAA...TTGTCCTTATCC/CTGGTTCTCATA...TGTAG|GTA 0 1 91.228
132129912 GT-AG 0 1.000000099473604e-05 807 rna-XM_031632140.1 24215997 13 24561684 24562490 Nymphaea colorata 210225 CAG|GTACTGAGAG...GTTGCCTGATTC/GGTTGCCTGATT...CATAG|GAG 0 1 97.076

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