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

✎ 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
48131208 GT-AG 0 0.0599759942819925 393 rna-XM_027312240.1 8933574 1 40166023 40166415 Coffea eugenioides 49369 TCC|GTATGTCTAC...GTATTTTTGATC/GTATTTTTGATC...TGCAG|GAG 0 1 4.827
48131209 GT-AG 0 1.000000099473604e-05 390 rna-XM_027312240.1 8933574 2 40164958 40165347 Coffea eugenioides 49369 AAG|GTCAGCGGTG...GCTGCTTCATCT/CTTCATCTGATT...TGCAG|GTT 0 1 22.928
48131210 GT-AG 0 1.000000099473604e-05 95 rna-XM_027312240.1 8933574 3 40164656 40164750 Coffea eugenioides 49369 AGG|GTAATGCTGA...TGTATCTTATTA/CTGTATCTTATT...ATCAG|GTC 0 1 28.479
48131211 GT-AG 0 0.0066144742838152 208 rna-XM_027312240.1 8933574 4 40164136 40164343 Coffea eugenioides 49369 AAG|GTATACATGT...ATGATCTTCATG/ATGATCTTCATG...TTCAG|GAA 0 1 36.846
48131212 GT-AG 0 0.0001681421940981 336 rna-XM_027312240.1 8933574 5 40163678 40164013 Coffea eugenioides 49369 TCT|GTTAGTTTTC...CAGTTTTTAAAG/ATATATCTGATG...CTCAG|GGA 2 1 40.118
48131213 GT-AG 0 89.5361071328987 1840 rna-XM_027312240.1 8933574 6 40160650 40162489 Coffea eugenioides 49369 TCA|GTATCCTCAT...TCTTCCTTTACA/TCTTCCTTTACA...ACTAG|GTA 2 1 71.976
48131214 GT-AG 0 0.0550235745498993 111 rna-XM_027312240.1 8933574 7 40160397 40160507 Coffea eugenioides 49369 CAT|GTATATCCTT...TCTGCTTTATTA/CCCTTTCTAATT...ACCAG|AAG 0 1 75.784
48131215 GT-AG 0 1.000000099473604e-05 137 rna-XM_027312240.1 8933574 8 40160100 40160236 Coffea eugenioides 49369 AAG|GTAAATGCCC...AGTGTTTTAATT/AGTGTTTTAATT...TGCAG|GAA 1 1 80.075
48131216 GT-AG 0 0.0001151568460528 1938 rna-XM_027312240.1 8933574 9 40157998 40159935 Coffea eugenioides 49369 AAG|GTATGGGTTT...TGATCCTTAATG/ATGAAATTGATT...TGCAG|GAC 0 1 84.473
48131217 GT-AG 0 1.000000099473604e-05 1131 rna-XM_027312240.1 8933574 10 40156781 40157911 Coffea eugenioides 49369 CAG|GTAAAACAGC...TTACTGTTATTT/TTTACTGTTATT...TTCAG|ATA 2 1 86.779
48131218 GT-AG 0 6.12662556452706e-05 1694 rna-XM_027312240.1 8933574 11 40154987 40156680 Coffea eugenioides 49369 AAG|GTTTGTCTTA...TGACTTTTATTT/GTCTATCTTATA...AACAG|GTC 0 1 89.461
48131219 GT-AG 0 3.398182610988874e-05 1483 rna-XM_027312240.1 8933574 12 40153442 40154924 Coffea eugenioides 49369 TAT|GTAAGTTCAC...GCCTTCTGGATT/TCTGGATTCATT...TGCAG|ATG 2 1 91.124
48131220 GT-AG 0 1.000000099473604e-05 222 rna-XM_027312240.1 8933574 13 40153066 40153287 Coffea eugenioides 49369 CAG|GTGAATTTTC...TTGTTTTTGGTG/TTGGTGGTGAAC...TGCAG|GTG 0 1 95.253

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