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)

13 rows where transcript_id = 21550650

✎ 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
116462731 GT-AG 0 1.000000099473604e-05 2200 rna-XM_021650128.1 21550650 1 4120387 4122586 Meriones unguiculatus 10047 GTG|GTGAGTACGC...TGTGCTTCAGTC/CTGTGCTTCAGT...CACAG|GTA 0 1 1.435
116462732 GT-AG 0 1.000000099473604e-05 2888 rna-XM_021650128.1 21550650 2 4117235 4120122 Meriones unguiculatus 10047 TGG|GTAAGTAAGA...TATTCCTAATCA/CTATTCCTAATC...TCTAG|CTG 0 1 15.47
116462733 GT-AG 0 1.000000099473604e-05 1158 rna-XM_021650128.1 21550650 3 4115958 4117115 Meriones unguiculatus 10047 CCG|GTGAGTGTCT...CCTCCATTAAAT/CTCCATTTCATC...TCTAG|GTT 2 1 21.797
116462734 GT-AG 0 1.000000099473604e-05 502 rna-XM_021650128.1 21550650 4 4115402 4115903 Meriones unguiculatus 10047 CAA|GTGAGCAACC...ACCCTCTTCCCG/TTCCCGCTCACT...CACAG|TGA 2 1 24.668
116462735 GT-AG 0 2.525425604702465e-05 186 rna-XM_021650128.1 21550650 5 4115050 4115235 Meriones unguiculatus 10047 CAG|GTAGGCACTG...CATTCTTTGCCT/CTTTGCCTGAGA...TGCAG|TTC 0 1 33.493
116462736 GT-AG 0 9.35461057287839e-05 505 rna-XM_021650128.1 21550650 6 4114370 4114874 Meriones unguiculatus 10047 AAG|GTACATCCAG...AGCGCCTTACCA/CAGGTTCTGAAG...TACAG|ACA 1 1 42.796
116462737 GC-AG 0 1.000000099473604e-05 463 rna-XM_021650128.1 21550650 7 4113728 4114190 Meriones unguiculatus 10047 CAG|GCAAGTGAGG...GGGTCCTTCCTC/TCCTTCCTCACC...CACAG|TTC 0 1 52.313
116462738 GT-AG 0 1.000000099473604e-05 878 rna-XM_021650128.1 21550650 8 4112749 4113626 Meriones unguiculatus 10047 CAC|GTGAGTATGG...GCTTCAGTGACA/TCGGGCTTCAGT...TGCAG|AAA 2 1 57.682
116462739 GT-AG 0 1.000000099473604e-05 94 rna-XM_021650128.1 21550650 9 4112535 4112628 Meriones unguiculatus 10047 CAT|GTGAGTAGAG...TGCTGCTCACCC/CTGCTGCTCACC...CCCAG|CAT 2 1 64.062
116462740 GT-AG 0 1.000000099473604e-05 90 rna-XM_021650128.1 21550650 10 4112322 4112411 Meriones unguiculatus 10047 CAG|GTGCGCCCTG...ACATACTGAGAG/GACATACTGAGA...CCCAG|GAT 2 1 70.601
116462741 GT-AG 0 1.000000099473604e-05 329 rna-XM_021650128.1 21550650 11 4111857 4112185 Meriones unguiculatus 10047 CTG|GTGAGAGGTC...GGCGCTTCAGTG/TGGCGCTTCAGT...TCCAG|GAG 0 1 77.831
116462742 GT-AG 0 1.000000099473604e-05 660 rna-XM_021650128.1 21550650 12 4111134 4111793 Meriones unguiculatus 10047 CGC|GTGAGTGAGC...TGCCCTATGACT/CTGCCTCTGACA...CACAG|GCC 0 1 81.18
116462743 GT-AG 0 1.6491676424184164e-05 846 rna-XM_021650128.1 21550650 13 4110150 4110995 Meriones unguiculatus 10047 CAG|GTAGGCCACT...AAAGCTTTGAAC/AAAGCTTTGAAC...CCCAG|GTC 0 1 88.517

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