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

✎ 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
119314180 GT-AG 0 1.000000099473604e-05 96 Misin01G471800.1.v7.1 22023853 1 141664237 141664332 Miscanthus sinensis 62337 GAG|GTTAGTTTTT...TGTTTCATAACT/ATATGTTTCATA...TGCAG|ATT 0 1 52.146
119314181 GT-AG 0 1.000000099473604e-05 120 Misin01G471800.1.v7.1 22023853 2 141663988 141664107 Miscanthus sinensis 62337 CAA|GTGCGTACAC...CATTGCTTAACT/TTTTTGTTCATT...TGTAG|AGC 0 1 54.901
119314182 GT-AG 0 1.000000099473604e-05 96 Misin01G471800.1.v7.1 22023853 3 141663703 141663798 Miscanthus sinensis 62337 AAG|GTGGATCTGA...TTCTTCTTACAA/ATTCTTCTGATT...CTTAG|GAT 0 1 58.937
119314183 GT-AG 0 3.654211346573342e-05 1312 Misin01G471800.1.v7.1 22023853 4 141662323 141663634 Miscanthus sinensis 62337 ATT|GTAAGTGATT...TGCCCTTTAATT/TTAATTTTGACC...TGCAG|TCC 2 1 60.389
119314184 GT-AG 0 1.000000099473604e-05 89 Misin01G471800.1.v7.1 22023853 5 141661704 141661792 Miscanthus sinensis 62337 AAG|GTTGTGGGTT...ACAATTTTAAAA/TATATATTTATT...TGCAG|GTG 1 1 71.706
119314185 GT-AG 0 0.0054066030206365 895 Misin01G471800.1.v7.1 22023853 6 141660632 141661526 Miscanthus sinensis 62337 AAG|GTAGCTATTT...GTTCCTTTCACA/TTTTTGTTTATG...TCCAG|TTG 1 1 75.486
119314186 GT-AG 0 5.845546002069201 331 Misin01G471800.1.v7.1 22023853 7 141660202 141660532 Miscanthus sinensis 62337 TTG|GTACCCTTTT...TTTTTCTTATGG/TGATTTCTCACT...TTAAG|GAT 1 1 77.6
119314187 GT-AG 0 5.550723931776627e-05 79 Misin01G471800.1.v7.1 22023853 8 141660007 141660085 Miscanthus sinensis 62337 CAG|GTAAGCTTAG...CGTTCTTTGTTT/TCTTTGTTTACC...TGCAG|TCA 0 1 80.077
119314188 GT-AG 0 1.2181047144808522e-05 123 Misin01G471800.1.v7.1 22023853 9 141659674 141659796 Miscanthus sinensis 62337 GAG|GTAAATTGAT...ACTTTCTTATAT/TACTTTCTTATA...GGCAG|GGA 0 1 84.561
119314189 GT-AG 0 1.000000099473604e-05 124 Misin01G471800.1.v7.1 22023853 10 141659277 141659400 Miscanthus sinensis 62337 AAG|GTTAGTTTTC...GCAATCATGATA/ATGATAGTTACT...TTCAG|ATG 0 1 90.391
119314190 GT-AG 0 1.000000099473604e-05 496 Misin01G471800.1.v7.1 22023853 11 141658633 141659128 Miscanthus sinensis 62337 TCG|GTAAGAGTTT...CTCTACTTACCT/CCTCTACTTACC...TTTAG|TTT 1 1 93.551
119314191 GT-AG 0 1.1184781386390652e-05 723 Misin01G471800.1.v7.1 22023853 12 141657776 141658498 Miscanthus sinensis 62337 GTG|GTATGGCCAT...TGCTTTTTACAC/CTGCTTTTTACA...TGCAG|GTT 0 1 96.413
119314192 GT-AG 0 0.0009486726750122 93 Misin01G471800.1.v7.1 22023853 13 141657602 141657694 Miscanthus sinensis 62337 AAG|GTAACCCAAT...TCTTGCTTAGTG/CTCTTGCTTAGT...TGCAG|GTT 0 1 98.142

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