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

✎ 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
110876103 GC-AG 0 1.000000099473604e-05 1149 rna-XM_012002527.1 20701681 1 7780123 7781271 Mandrillus leucophaeus 9568 GGG|GCGATGGGGG...CGGACCCCAACT/CGGACCCCAACT...CGGAG|GGC 0 1 3.39
110876104 GT-AG 0 1.000000099473604e-05 888 rna-XM_012002527.1 20701681 4 7768998 7769885 Mandrillus leucophaeus 9568 ATG|GTGAGAAGGG...CAGGCTGAGACT/GAGACTGTCACC...CACAG|GTG 0 1 20.056
110876105 GT-AG 0 1.000000099473604e-05 185 rna-XM_012002527.1 20701681 5 7768601 7768785 Mandrillus leucophaeus 9568 CAG|GTCTGCGGAG...CCTGCTCTAACT/CCTGCTCTAACT...TGCAG|CAG 2 1 30.038
110876106 GT-AG 0 1.000000099473604e-05 272 rna-XM_012002527.1 20701681 6 7768163 7768434 Mandrillus leucophaeus 9568 GAG|GTAGGCCCCA...GTTTTCCAAACC/GTTTTCCAAACC...CCCAG|GTG 0 1 37.853
110876107 GT-AG 0 1.000000099473604e-05 1831 rna-XM_012002527.1 20701681 7 7766178 7768008 Mandrillus leucophaeus 9568 TGG|GTGAGGCCCA...GGCCTCTGAACT/AGGCCTCTGAAC...CCCAG|AGC 1 1 45.104
110876108 GT-AG 0 0.00073535970058 304 rna-XM_012002527.1 20701681 8 7765748 7766051 Mandrillus leucophaeus 9568 AGA|GTAAGCCTCG...GAGCCCTTTCCT/AGGAGCCCCAGC...CCCAG|AGT 1 1 51.036
110876109 GT-AG 0 1.000000099473604e-05 380 rna-XM_012002527.1 20701681 9 7765138 7765517 Mandrillus leucophaeus 9568 AAG|GTTGTGGGGC...GGTGCCTGGAAG/AGGGTTGTGACT...TGCAG|TTT 0 1 61.864
110876110 GT-AG 0 1.000000099473604e-05 469 rna-XM_012002527.1 20701681 10 7764508 7764976 Mandrillus leucophaeus 9568 GGG|GTGGGTCCCC...TGGTCCCTAGCT/CTGAGGCTCAGC...CCCAG|GAA 2 1 69.444
110876111 GT-AG 0 1.000000099473604e-05 1748 rna-XM_012002527.1 20701681 11 7762572 7764319 Mandrillus leucophaeus 9568 ACG|GTGGGTACTG...GTTTCCTGAGCC/GGGTTGCTTATA...TCCAG|GAG 1 1 78.296
110876112 GT-AG 0 1.000000099473604e-05 721 rna-XM_012002527.1 20701681 12 7761618 7762338 Mandrillus leucophaeus 9568 AGG|GTGGGTGCCC...GGTCCCTGAGCA/GCGCTGCTCACG...CCCAG|GGC 0 1 89.266
110876113 GC-AG 0 1.000000099473604e-05 1099 rna-XM_012002527.1 20701681 14 7757321 7758419 Mandrillus leucophaeus 9568 CAG|GCGCTGGCTG...GACGCTTCCACT/GACGCTTCCACT...CGCAG|TGG 1 1 95.527

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