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

✎ 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
120576482 GT-AG 0 1.000000099473604e-05 299 rna-XM_029202447.1 22246013 2 7688 7986 Monodon monoceros 40151 CCG|GTAAGTATTG...GCCTCCTGACCT/CCGCAGCTCATT...TGCAG|GTT 1 1 14.473
120576483 GT-AG 0 1.000000099473604e-05 89 rna-XM_029202447.1 22246013 3 8063 8151 Monodon monoceros 40151 GAG|GTAGGTTGAA...TTCTCCTTTTCA/CTCCTTTTCACA...CCTAG|GAT 2 1 19.711
120576484 GT-AG 0 1.000000099473604e-05 226 rna-XM_029202447.1 22246013 4 8243 8468 Monodon monoceros 40151 CAG|GTGAGGCTTT...CTAACCTTATTC/CCTGTCTTCATG...TACAG|GTG 0 1 25.982
120576485 GT-AG 0 1.000000099473604e-05 137 rna-XM_029202447.1 22246013 5 8613 8749 Monodon monoceros 40151 GAG|GTGGGCCTGA...CGTTCCTTCTTC/TGAGAGCTTACG...CCTAG|GAA 0 1 35.906
120576486 GT-AG 0 1.000000099473604e-05 88 rna-XM_029202447.1 22246013 6 8870 8957 Monodon monoceros 40151 CAG|GTAAACCTAG...TAAACCTTCCCG/CATCTGTTAAAC...CACAG|GAC 0 1 44.176
120576487 GT-AG 0 1.000000099473604e-05 212 rna-XM_029202447.1 22246013 7 9054 9265 Monodon monoceros 40151 CGG|GTGAGAGATC...CCTGCCTGATCT/CCTACTCTGACT...CACAG|GAG 0 1 50.793
120576488 GT-AG 0 1.000000099473604e-05 6604 rna-XM_029202447.1 22246013 8 9419 16022 Monodon monoceros 40151 CAG|GTCAGAGCCC...TGCTCTTCAGCT/TCAGCTCTGACT...CCCAG|GTG 0 1 61.337
120576489 GT-AG 0 0.0003854517571968 157 rna-XM_029202447.1 22246013 9 16205 16361 Monodon monoceros 40151 GAA|GTAAACACCC...TCTTCCTCAGCT/CTCTTCCTCAGC...CCCAG|GTC 2 1 73.88
120576490 GT-AG 0 1.000000099473604e-05 110 rna-XM_029202447.1 22246013 10 16408 16517 Monodon monoceros 40151 CGG|GTGAGTTAGC...TTGTCCTTGACT/TTGTCCTTGACT...CTCAG|ATG 0 1 77.05
120576491 GT-AG 0 1.000000099473604e-05 253 rna-XM_029202447.1 22246013 11 16656 16908 Monodon monoceros 40151 CAG|GTCTGGGGGT...GGCATCGTACCT/CAAGTGCTGAGT...ACCAG|GTG 0 1 86.561
120576492 GT-AG 0 1.000000099473604e-05 1124 rna-XM_029202447.1 22246013 12 17074 18197 Monodon monoceros 40151 CAG|GTGAGGGTTT...GTTCCCATAATC/ATAATCATCACT...GCCAG|GTG 0 1 97.932
120576494 GT-AG 0 1.000000099473604e-05 333 rna-XM_029202447.1 22246013 1 7298 7630 Monodon monoceros 40151 AAG|GTAGGTGGGG...TGCCCCTTGCTA/CTTGCTATCAGC...TCCAG|CTC   0 11.509

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