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)

9 rows where transcript_id = 8933525

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
48130667 GT-AG 0 1.000000099473604e-05 500 rna-XM_027305352.1 8933525 2 42640386 42640885 Coffea eugenioides 49369 GAG|GTAATTGAAT...GTTCTTTTATAA/ACATGGCTTATT...TGCAG|AGG 2 1 19.188
48130668 GT-AG 0 0.0623773500580819 103 rna-XM_027305352.1 8933525 3 42641591 42641693 Coffea eugenioides 49369 TGT|GTATGTACTT...ATTTTCTTAAAG/ATGTTTATGATT...CTCAG|GCT 2 1 32.568
48130669 GT-AG 0 0.0315931274977684 953 rna-XM_027305352.1 8933525 4 42642913 42643865 Coffea eugenioides 49369 GAG|GTCTCTCTCT...AATGTCTAAACT/GAATGTCTAAAC...TGCAG|CTC 0 1 55.703
48130670 GT-AG 0 1.000000099473604e-05 140 rna-XM_027305352.1 8933525 5 42644158 42644297 Coffea eugenioides 49369 AAG|GTACTGAAAG...GTTGTCATGGCA/GAGTAACTAACA...AGCAG|GTG 1 1 61.245
48130671 GT-AG 0 0.0039285398686989 165 rna-XM_027305352.1 8933525 6 42644423 42644587 Coffea eugenioides 49369 CAT|GTTTGTTCTC...CTGCCTTTAATT/ATGGTTTTTACT...AACAG|GTT 0 1 63.617
48130672 GT-AG 0 0.0004647665518357 86 rna-XM_027305352.1 8933525 7 42645055 42645140 Coffea eugenioides 49369 GGG|GTAATTCTTC...TTTTCTTTATCT/GTTTTCTTTATC...CACAG|GGA 2 1 72.481
48130673 GT-AG 0 1.696699994167179e-05 1915 rna-XM_027305352.1 8933525 8 42645170 42647084 Coffea eugenioides 49369 AAG|GTATTACAAA...AATTTATTAACT/AATTTATTAACT...TACAG|GTG 1 1 73.031
48130674 GT-AG 0 0.0005390970383524 93 rna-XM_027305352.1 8933525 9 42647565 42647657 Coffea eugenioides 49369 TAA|GTAAGCTCAA...TTACCCTTGGTT/TCTGTGGTCATT...CTCAG|ACT 1 1 82.141
48141010 GT-AG 0 2.74269808148796e-05 189 rna-XM_027305352.1 8933525 1 42639211 42639399 Coffea eugenioides 49369 AAG|GTACGATTTC...AGCTTCTGAATT/AAGCTTCTGAAT...TATAG|GTT   0 3.094

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