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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
132129680 GT-AG 0 1.011826167535087e-05 93 rna-XM_031627688.1 24215977 1 15203911 15204003 Nymphaea colorata 210225 GAA|GTAAGTGCTC...CTACCTTTAAAA/TTTACTCTAACC...TTCAG|GTA 2 1 2.427
132129681 GT-AG 0 1.000000099473604e-05 94 rna-XM_031627688.1 24215977 2 15204071 15204164 Nymphaea colorata 210225 GAG|GTAAGGCATC...TTGTCCTTGATT/TTGTCCTTGATT...TGCAG|ATG 0 1 4.086
132129682 GT-AG 0 2.6524290227421654e-05 612 rna-XM_031627688.1 24215977 3 15204231 15204842 Nymphaea colorata 210225 AAG|GTATAAATAC...AACTCTTTAGGA/TGTGAGCTTATA...CATAG|GGT 0 1 5.721
132129683 GT-AG 0 1.000000099473604e-05 107 rna-XM_031627688.1 24215977 4 15204890 15204996 Nymphaea colorata 210225 CAT|GTAAGTGCCA...TCGTTCTTAGCA/GTCGTTCTTAGC...TTTAG|GGC 2 1 6.885
132129684 GT-AG 0 0.0192587476225813 141 rna-XM_031627688.1 24215977 5 15205043 15205183 Nymphaea colorata 210225 GAG|GTATACCCTT...CCATTCTCAATT/GCCATTCTCAAT...TCCAG|AAA 0 1 8.024
132129685 GT-AG 0 1.000000099473604e-05 1187 rna-XM_031627688.1 24215977 6 15205265 15206451 Nymphaea colorata 210225 AAG|GTTGGTTTCT...TTCCTTTTAACA/TAAAATCTGATT...TGTAG|TGC 0 1 10.03
132129686 GT-AG 0 1.000000099473604e-05 104 rna-XM_031627688.1 24215977 7 15206495 15206598 Nymphaea colorata 210225 TTG|GTAAGTGCTT...TATTCTTTATCT/CTTTATCTTACC...TGCAG|GTG 1 1 11.095
132129687 GT-AG 0 0.0593396075166498 773 rna-XM_031627688.1 24215977 8 15206649 15207421 Nymphaea colorata 210225 TCT|GTATGTCATT...TCTCTTTTAATA/CTTTTAATAATT...TGCAG|GTA 0 1 12.333
132129688 GT-AG 0 7.70320658348982e-05 106 rna-XM_031627688.1 24215977 9 15207504 15207609 Nymphaea colorata 210225 TAG|GTGCTCTCTC...TTATCTTTTACT/TTATCTTTTACT...CACAG|GCT 1 1 14.364
132129689 GT-AG 0 6.677259793880907e-05 431 rna-XM_031627688.1 24215977 10 15207660 15208090 Nymphaea colorata 210225 TTT|GTAAGTCTTT...ATGTCTCTAATT/ATGTCTCTAATT...TTTAG|GAT 0 1 15.602
132129690 GT-AG 0 2.090660049182708e-05 1480 rna-XM_031627688.1 24215977 11 15208165 15209644 Nymphaea colorata 210225 TTT|GTAAGTATGT...ATTCTGTTATAT/GATTCTGTTATA...TGCAG|GAA 2 1 17.434
132129691 GT-AG 0 0.0007170215014291 79 rna-XM_031627688.1 24215977 12 15209697 15209775 Nymphaea colorata 210225 AGT|GTAAGTTCTA...TTTCTTTTATTT/TTTTCTTTTATT...GACAG|GCA 0 1 18.722
132129692 GT-AG 0 1.000000099473604e-05 153 rna-XM_031627688.1 24215977 13 15210757 15210909 Nymphaea colorata 210225 GCG|GTGAGAGGAT...TGTTTTTTGGTT/GGAAGTCTCATC...CACAG|TTG 0 1 43.016

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