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)

12 rows where transcript_id = 8933541

✎ 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
48130862 GT-AG 0 1.000000099473604e-05 5614 rna-XM_027313767.1 8933541 1 25148199 25153812 Coffea eugenioides 49369 AAG|GTAATTCGTC...TTTCCATTGAGT/TGATATCTGATA...ACCAG|CAC 0 1 12.39
48130863 GT-AG 0 0.0071359430918458 265 rna-XM_027313767.1 8933541 2 25154131 25154395 Coffea eugenioides 49369 AAG|GTATCAAGCA...CCTATTTTATCT/TTTTATCTAACT...TACAG|GTA 0 1 19.567
48130864 GT-AG 0 1.000000099473604e-05 95 rna-XM_027313767.1 8933541 3 25154451 25154545 Coffea eugenioides 49369 TTC|GTGAGTTACT...GCGCCCTTTTTC/GAAAAACTCAAC...GGCAG|AGG 1 1 20.808
48130865 GT-AG 0 0.0232814671848162 89 rna-XM_027313767.1 8933541 4 25154722 25154810 Coffea eugenioides 49369 AAG|GTATCATGGC...TTCTATTTGATG/TTCTATTTGATG...AACAG|GTT 0 1 24.78
48130866 GT-AG 0 1.000000099473604e-05 97 rna-XM_027313767.1 8933541 5 25155033 25155129 Coffea eugenioides 49369 ACA|GTAAGAATAC...TTCGCTTTCAAT/TTCGCTTTCAAT...TTCAG|GTT 0 1 29.79
48130867 GT-AG 0 1.000000099473604e-05 229 rna-XM_027313767.1 8933541 6 25155369 25155597 Coffea eugenioides 49369 CTT|GTGAGTAACA...GACCCCTTGAAA/GCTGTTTTGATT...GGCAG|TTC 2 1 35.184
48130868 GT-AG 0 2.201467791984348e-05 413 rna-XM_027313767.1 8933541 7 25156124 25156536 Coffea eugenioides 49369 CAG|GTTTAGCTTT...TTTATTTTGACA/TTTATTTTGACA...TTCAG|GGA 0 1 47.055
48130869 GT-AG 0 1.000000099473604e-05 486 rna-XM_027313767.1 8933541 8 25156811 25157296 Coffea eugenioides 49369 AAG|GTCAGTACTT...AAATGCTTATTG/TTATTGCTAATT...TTCAG|GCT 1 1 53.239
48130870 GT-AG 0 1.000000099473604e-05 602 rna-XM_027313767.1 8933541 9 25158187 25158788 Coffea eugenioides 49369 AAG|GTTAGTTCAA...GTTTCTGGAATT/TGACATTTCATT...TACAG|AAG 0 1 73.324
48130871 GT-AG 0 1.000000099473604e-05 164 rna-XM_027313767.1 8933541 10 25159056 25159219 Coffea eugenioides 49369 CAG|GTAAGATTCA...TTGATCTTATTC/TTTGATCTTATT...GGCAG|GTT 0 1 79.35
48130872 GT-AG 0 1.000000099473604e-05 138 rna-XM_027313767.1 8933541 11 25159484 25159621 Coffea eugenioides 49369 AAG|GTAAAGTCTC...TGGTTTTTAGTT/CTGAAACTAATT...TTCAG|ACA 0 1 85.308
48130873 GT-AG 0 1.000000099473604e-05 284 rna-XM_027313767.1 8933541 12 25159916 25160199 Coffea eugenioides 49369 CAG|GTCTAAACAC...GACATTTTAAAG/TGTTGATTAATT...TTCAG|GGG 0 1 91.943

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