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)

11 rows where transcript_id = 14424032

✎ 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
77101534 GT-AG 0 0.0182216597420794 89 rna-XM_024148594.1 14424032 1 3730483 3730571 Eutrema salsugineum 72664 TCT|GTATGTCCCT...TTTAGCTTGACG/CCTACCTTTATT...CACAG|GTT 2 1 4.967
77101535 GT-AG 0 0.0018796545553014 81 rna-XM_024148594.1 14424032 2 3730326 3730406 Eutrema salsugineum 72664 CGA|GTAAGCCTTT...TTCTTCTTATTT/TTTCTTCTTATT...TACAG|GAA 0 1 6.296
77101536 GT-AG 0 0.000764245795624 79 rna-XM_024148594.1 14424032 3 3730130 3730208 Eutrema salsugineum 72664 ATG|GTATGAATTT...TTTCCCTTACTA/ATTTCCCTTACT...TTCAG|TAC 0 1 8.342
77101537 GT-AG 0 1.000000099473604e-05 106 rna-XM_024148594.1 14424032 4 3729863 3729968 Eutrema salsugineum 72664 GAG|GTACTGATAA...TGCGTTTTGTCT/TTTTGTCTGATT...GAAAG|TCG 2 1 11.158
77101538 GC-AG 0 1.000000099473604e-05 106 rna-XM_024148594.1 14424032 5 3729012 3729117 Eutrema salsugineum 72664 GAG|GCATGTATTT...TTTCTTTTATAT/TTTATATTGATT...TCCAG|GAA 0 1 24.187
77101539 GT-AG 0 1.000000099473604e-05 105 rna-XM_024148594.1 14424032 6 3728409 3728513 Eutrema salsugineum 72664 CAG|GTAATACTAA...TTCTCTTTGATC/TTCTCTTTGATC...CTCAG|GGT 0 1 32.896
77101540 GT-AG 0 1.000000099473604e-05 75 rna-XM_024148594.1 14424032 7 3727770 3727844 Eutrema salsugineum 72664 CAG|GTAATGTAGC...TTTTGTTTACCA/GTTTTGTTTACC...CGCAG|ACT 0 1 42.76
77101541 GT-AG 0 1.000000099473604e-05 99 rna-XM_024148594.1 14424032 8 3727488 3727586 Eutrema salsugineum 72664 GAG|GTCAGCAGAC...TACATCTTGATG/CTGTTATTCATG...TGAAG|ATC 0 1 45.96
77101542 GT-AG 0 1.000000099473604e-05 121 rna-XM_024148594.1 14424032 9 3726914 3727034 Eutrema salsugineum 72664 GAG|GTAGAATAGC...ATTTTCCAAGCA/TAGATACTAATT...TCTAG|GTT 0 1 53.882
77101543 GT-AG 0 0.0003393837179509 153 rna-XM_024148594.1 14424032 10 3726650 3726802 Eutrema salsugineum 72664 GGG|GTAATCATCT...GTGTTTTTATAT/TGTGTTTTTATA...TGCAG|ATA 0 1 55.824
77101544 GT-AG 0 1.000000099473604e-05 123 rna-XM_024148594.1 14424032 11 3724688 3724810 Eutrema salsugineum 72664 GAG|GTAATGGAAC...CTTGGCTTATCT/TCTTGGCTTATC...TACAG|GTC 0 1 87.985

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