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)

11 rows where transcript_id = 4793077

✎ 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
24940557 GT-AG 0 3.3601805981931334e-05 270 Brast01G102100.1.v0.1.stacei 4793077 1 6097285 6097554 Brachypodium stacei 1071399 CAG|GTAACTGAGT...ATGTTCTTCTTC/CACCATCTAATG...TGAAG|GTA 0 1 24.28
24940558 GT-AG 0 0.000245782395056 89 Brast01G102100.1.v0.1.stacei 4793077 2 6097765 6097853 Brachypodium stacei 1071399 CTG|GTACGTTGAG...TGTTTCTTGAAT/TGTTTCTTGAAT...TACAG|GGA 0 1 30.041
24940559 GT-AG 0 1.000000099473604e-05 1151 Brast01G102100.1.v0.1.stacei 4793077 3 6098115 6099265 Brachypodium stacei 1071399 AAG|GTAAATCACC...CTTTTCTGATCT/GCTTTTCTGATC...TGCAG|GAA 0 1 37.202
24940560 GT-AG 0 0.0001661052078712 1759 Brast01G102100.1.v0.1.stacei 4793077 4 6099353 6101111 Brachypodium stacei 1071399 CAG|GTATAAATTT...TGATACTTATCT/CTGATACTTATC...TTCAG|AAT 0 1 39.588
24940561 GT-AG 0 1.000000099473604e-05 470 Brast01G102100.1.v0.1.stacei 4793077 5 6101116 6101585 Brachypodium stacei 1071399 ATG|GTGATTTCAT...CATCTCTGGACT/CATCTCTGGACT...GTAAG|CGG 1 1 39.698
24940562 GT-AG 0 0.0001609468452059 776 Brast01G102100.1.v0.1.stacei 4793077 6 6102184 6102959 Brachypodium stacei 1071399 AAG|GTTGCTACTA...TCCCTTTTGACA/AAGCTTCTAACA...TTCAG|AAT 2 1 56.104
24940563 GT-AG 0 1.7558805672803324e-05 254 Brast01G102100.1.v0.1.stacei 4793077 7 6103090 6103343 Brachypodium stacei 1071399 GAG|GTAATTTCCC...CTCTGCTTATTT/TCTCTGCTTATT...ACTAG|GTG 0 1 59.671
24940564 GT-AG 0 1.000000099473604e-05 227 Brast01G102100.1.v0.1.stacei 4793077 8 6103875 6104101 Brachypodium stacei 1071399 CAG|GTTATCACTT...CATGTCTGAGCT/TATTTTCTCATG...GACAG|GAT 0 1 74.239
24940565 GT-AG 0 1.000000099473604e-05 405 Brast01G102100.1.v0.1.stacei 4793077 9 6104210 6104614 Brachypodium stacei 1071399 CAA|GTAAGCAGCT...TAGAACTTATTG/GTAGAACTTATT...TGCAG|GGT 0 1 77.202
24940566 GT-AG 0 0.0012342008944143 384 Brast01G102100.1.v0.1.stacei 4793077 10 6105161 6105544 Brachypodium stacei 1071399 CAG|GTATTTCCTG...CTATTTTTACTT/TCTATTTTTACT...TTAAG|GTC 0 1 92.181
24940567 GT-AG 0 0.0002472792001995 1222 Brast01G102100.1.v0.1.stacei 4793077 11 6105668 6106889 Brachypodium stacei 1071399 CAG|GTTTGCCATC...GCTTCTTTAGTC/TCTTTACTGACA...TGCAG|CAA 0 1 95.556

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