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

✎ 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
116462889 GT-AG 0 1.000000099473604e-05 1421 rna-XM_021640586.1 21550662 1 2342809 2344229 Meriones unguiculatus 10047 CGA|GTAAGGAGCT...GTATGCTTAGCT/TAGCTGCTTACT...TGCAG|ATC 0 1 6.12
116462890 GT-AG 0 0.0006588141139901 2402 rna-XM_021640586.1 21550662 2 2340187 2342588 Meriones unguiculatus 10047 AGG|GTAACTATAG...TCTGTTTTGTCT/CAGAGCCTGAGT...TCCAG|GAA 1 1 14.92
116462891 GT-AG 0 1.6807769359129786e-05 5887 rna-XM_021640586.1 21550662 3 2334101 2339987 Meriones unguiculatus 10047 CCG|GTAGGCAGCC...GTAATCTAAGCT/GGTAATCTAAGC...CACAG|GGA 2 1 22.88
116462892 GT-AG 0 1.000000099473604e-05 1175 rna-XM_021640586.1 21550662 4 2332730 2333904 Meriones unguiculatus 10047 AAG|GTGCGTCTCA...CTGTCCATGATT/GTAGTGTTCATC...CCCAG|CTC 0 1 30.72
116462893 GT-AG 0 1.000000099473604e-05 1152 rna-XM_021640586.1 21550662 5 2331473 2332624 Meriones unguiculatus 10047 ATG|GTAAGTGGCA...ACTACCTTACAC/CTTACACTCAGT...TCCAG|ATA 0 1 34.92
116462894 GT-AG 0 1.000000099473604e-05 957 rna-XM_021640586.1 21550662 6 2330401 2331357 Meriones unguiculatus 10047 ACG|GTAAAAATAA...TGTGCCTTTACA/TCTCTCCTGACA...TGTAG|GTT 1 1 39.52
116462895 GT-AG 0 1.000000099473604e-05 159 rna-XM_021640586.1 21550662 7 2330161 2330319 Meriones unguiculatus 10047 CGT|GTAAGTGGCT...ACTGCCTTGCTC/GGTGATTCCACT...TGCAG|CTA 1 1 42.76
116462896 GT-AG 0 1.000000099473604e-05 1418 rna-XM_021640586.1 21550662 8 2328645 2330062 Meriones unguiculatus 10047 AAG|GTGAGTGCCC...ATCCCCTTCTCT/TACTGTGTAACC...TGCAG|GAT 0 1 46.68
116462897 GT-AG 0 0.0082284277259867 766 rna-XM_021640586.1 21550662 9 2327796 2328561 Meriones unguiculatus 10047 GGA|GTATGTATGA...ACAGCCTTCTCT/TGTGTCCACACA...CACAG|GTT 2 1 50.0
116462898 GT-AG 0 1.000000099473604e-05 653 rna-XM_021640586.1 21550662 10 2327000 2327652 Meriones unguiculatus 10047 CTG|GTGAGAGCCA...TTGTCCTTCTTG/GAATCTTGCATT...CGCAG|CTC 1 1 55.72
116463364 GT-AG 0 1.000000099473604e-05 486 rna-XM_021640586.1 21550662 11 2326331 2326816 Meriones unguiculatus 10047 CAG|GTGAGACTGG...TGTTCCTTCACT/TGTTCCTTCACT...TTCAG|GAC   0 63.04

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