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

✎ 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
116462802 GT-AG 0 1.000000099473604e-05 1356 rna-XM_021644217.1 21550655 1 3581641 3582996 Meriones unguiculatus 10047 CTG|GTGAGAGATC...CAGTCGTTCTCT/GTGCTGTTCAGT...CACAG|GTG 2 1 8.427
116462803 GT-AG 0 1.000000099473604e-05 133 rna-XM_021644217.1 21550655 2 3583108 3583240 Meriones unguiculatus 10047 CAG|GTAGTAACCT...ATCATCTCACCC/GATCATCTCACC...CTCAG|GTC 2 1 13.402
116462804 GT-AG 0 1.000000099473604e-05 1059 rna-XM_021644217.1 21550655 3 3583359 3584417 Meriones unguiculatus 10047 TTG|GTGAGGAAGC...ATCCCTGTGACA/TTCCCGCTCAGT...CAAAG|TTT 0 1 18.691
116462805 GT-AG 0 1.000000099473604e-05 104 rna-XM_021644217.1 21550655 4 3584553 3584656 Meriones unguiculatus 10047 CAG|GTGAGGCTGG...TTGGCCCCAGCC/CTTGGCCCCAGC...CTCAG|GGC 0 1 24.742
116462806 GT-AG 0 1.000000099473604e-05 1779 rna-XM_021644217.1 21550655 5 3584862 3586640 Meriones unguiculatus 10047 CGG|GTGAGGACCA...AGAGCCTCGCCC/CAGCAATTCACG...TGCAG|GGG 1 1 33.931
116462807 GT-AG 0 1.000000099473604e-05 286 rna-XM_021644217.1 21550655 6 3586761 3587046 Meriones unguiculatus 10047 TAG|GTGAGGGTTG...TTGTTCTTTCCT/TGGGGACTCATG...TGCAG|TGG 1 1 39.31
116462808 GT-AG 0 0.0001598734857805 71 rna-XM_021644217.1 21550655 7 3587124 3587194 Meriones unguiculatus 10047 GAA|GTAAGTTTCC...CCTTCCTTAGGC/CTTAGGCTCACC...TCCAG|GTC 0 1 42.761
116462809 GT-AG 0 1.000000099473604e-05 1630 rna-XM_021644217.1 21550655 8 3587302 3588931 Meriones unguiculatus 10047 CAG|GTGAGTCTCC...GGTCACTTGTCA/CTGGTGGTCACT...CATAG|GAC 2 1 47.557
116462810 GT-AG 0 1.000000099473604e-05 1845 rna-XM_021644217.1 21550655 9 3589065 3590909 Meriones unguiculatus 10047 GAG|GTGAGGATGC...TCTCCCCTGTCA/ACAGTTCAGATC...TACAG|GTG 0 1 53.519
116462811 GT-AG 0 0.0003185577954808 174 rna-XM_021644217.1 21550655 10 3591038 3591211 Meriones unguiculatus 10047 GAT|GTAGGCTGAC...CCGCCTTTGGTG/TCTATGGTGACT...TGCAG|CTA 2 1 59.256
116462812 GT-AG 0 1.000000099473604e-05 608 rna-XM_021644217.1 21550655 11 3591416 3592023 Meriones unguiculatus 10047 AAA|GTGAGGCCTG...GCTTTCTTTTCT/TCTTTTCTCACC...CACAG|TGA 2 1 68.4
116463360 GT-AG 0 1.000000099473604e-05 415 rna-XM_021644217.1 21550655 12 3592277 3592691 Meriones unguiculatus 10047 TAG|GTGAGTTAAG...TTCTTCTTGCCC/CTGTGTCTGATT...CTTAG|CCC   0 79.74

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