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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
63298482 GT-AG 0 5.277778773951963e-05 616 Dioal.01G033500.1.v2.1 11523728 1 17703769 17704384 Dioscorea alata 55571 CAG|GTCTTTTAAA...ACTGTTTTATCC/TTTATGCTGACA...TCCAG|GAA 0 1 20.63
63298483 GT-AG 0 0.00081404898289 83 Dioal.01G033500.1.v2.1 11523728 2 17702890 17702972 Dioscorea alata 55571 AAG|GTATGCCACT...TTTTCATTATTC/ATTTTTTTCATT...GGCAG|GTG 1 1 47.595
63298484 GT-AG 0 0.0074827515404328 96 Dioal.01G033500.1.v2.1 11523728 3 17702226 17702321 Dioscorea alata 55571 CAG|GTATATCTTA...TTGTCTTTGAAG/CTTTTTCTCATG...TCTAG|TAT 2 1 66.836
63298485 GC-AG 0 1.000000099473604e-05 71 Dioal.01G033500.1.v2.1 11523728 4 17702013 17702083 Dioscorea alata 55571 AAG|GCATGTGTTC...GTGCCATTACTT/AAAACTCTGATG...TGCAG|TTT 0 1 71.646
63298486 GT-AG 0 1.048109026177082e-05 307 Dioal.01G033500.1.v2.1 11523728 5 17701598 17701904 Dioscorea alata 55571 AAG|GTTCAGTTCG...AATTTCTTACTT/ACTTTTGTCAAT...TCCAG|GCT 0 1 75.305
63298487 GT-AG 0 1.000000099473604e-05 79 Dioal.01G033500.1.v2.1 11523728 6 17701306 17701384 Dioscorea alata 55571 CAG|GTTCTCAAGC...ACGACTTTATTG/ACTTTATTGATG...AACAG|AGG 0 1 82.52
63298488 GT-AG 0 0.0104587737054948 269 Dioal.01G033500.1.v2.1 11523728 7 17700926 17701194 Dioscorea alata 55571 CAG|GTATTTGTTT...GTTGCTTTAATA/GTTGCTTTAATA...GTAAG|CAT 0 1 86.28
63298489 GT-AG 0 0.0228714838783144 352 Dioal.01G033500.1.v2.1 11523728 8 17700379 17700730 Dioscorea alata 55571 CAG|GTATGCTACG...TTATTTTTATCT/TTTATTTTTATC...GGCAG|GCT 0 1 92.886
63298490 GT-AG 0 1.000000099473604e-05 83 Dioal.01G033500.1.v2.1 11523728 9 17700121 17700203 Dioscorea alata 55571 GAG|GTACAATCTT...AAGGCTTTTGTG/CTTATAGTTACA...TGCAG|AGA 1 1 98.814

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