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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
48131076 GT-AG 0 0.0039059809346257 218 rna-XM_027316513.1 8933560 1 38206124 38206341 Coffea eugenioides 49369 AAG|GTATCAAAAA...ACTTTTTTGATG/TTGATGCTCATT...TGCAG|GAA 1 1 20.486
48131077 GT-AG 0 1.000000099473604e-05 332 rna-XM_027316513.1 8933560 2 38205660 38205991 Coffea eugenioides 49369 AGG|GTAAATTCAA...TGGTTTTCGATT/CCGAAGCTAATT...TGAAG|GTT 1 1 23.76
48131078 GT-AG 0 1.000000099473604e-05 1538 rna-XM_027316513.1 8933560 3 38204000 38205537 Coffea eugenioides 49369 AAG|GTGAATAATC...TTTTTGTTAATT/TTTTTGTTAATT...TTCAG|GGT 0 1 26.786
48131079 GT-AG 0 0.0320989993621097 419 rna-XM_027316513.1 8933560 4 38203370 38203788 Coffea eugenioides 49369 TTG|GTATGTTTTT...TGTTCTGTGATT/TGTTCTGTGATT...TTTAG|ATT 1 1 32.019
48131080 GT-AG 0 2.216956158311591e-05 467 rna-XM_027316513.1 8933560 5 38202665 38203131 Coffea eugenioides 49369 CTA|GTAAGTACTT...TGTATTTTGATA/TGTATTTTGATA...TGCAG|TGG 2 1 37.922
48131081 GT-AG 0 3.1237303431608764e-05 520 rna-XM_027316513.1 8933560 6 38201994 38202513 Coffea eugenioides 49369 ATT|GTAAGTATGA...TATACCATATTA/CAAGGACTAAAT...TTTAG|GTT 0 1 41.667
48131082 TG-AG 0 0.111726065287358 1598 rna-XM_027316513.1 8933560 7 38200030 38201627 Coffea eugenioides 49369 CGA|TGATATTATA...TTTTTCTTCCCA/TTTTAGATCATA...ATCAG|GGA 0 1 50.744
48131083 GT-AG 0 1.000000099473604e-05 655 rna-XM_027316513.1 8933560 8 38198609 38199263 Coffea eugenioides 49369 AAG|GTAATCAGAT...TTTTGCTTATTG/CTTTTGCTTATT...TGCAG|GAA 1 1 69.742
48131084 GT-AG 0 1.000000099473604e-05 572 rna-XM_027316513.1 8933560 9 38197905 38198476 Coffea eugenioides 49369 AAG|GTAGTGAGAC...TTTGTTTTATCT/CTTTGTTTTATC...TGAAG|AAT 1 1 73.016
48131085 GT-AG 0 1.5159136878936532e-05 178 rna-XM_027316513.1 8933560 10 38197605 38197782 Coffea eugenioides 49369 AAG|GTACATACCT...ACTTTGTTATCA/TTTGTTATCATG...GTCAG|GGA 0 1 76.042
48131086 GT-AG 0 0.009553571017199 176 rna-XM_027316513.1 8933560 11 38197218 38197393 Coffea eugenioides 49369 TTG|GTATGTAGTT...CTTTTCTTGATT/CTTTTCTTGATT...TTTAG|ATC 1 1 81.275
48131087 GT-AG 0 1.000000099473604e-05 109 rna-XM_027316513.1 8933560 12 38196871 38196979 Coffea eugenioides 49369 CTA|GTAAGTGCTA...TATTCATTATCT/TAGCTATTCATT...TGCAG|TGG 2 1 87.178
48131088 GT-AG 0 0.0001113729648771 119 rna-XM_027316513.1 8933560 13 38196601 38196719 Coffea eugenioides 49369 TTT|GTAAGTATGC...TTTTCCTTACGT/CTTTTCCTTACG...AACAG|GCT 0 1 90.923

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