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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
118584232 GT-AG 0 2.8192350342001717e-05 11764 rna-XM_016224117.1 21894356 1 8496873 8508636 Miniopterus natalensis 291302 CAG|GTATGATAGA...TTACTCTTGTTT/TGTTTTGTGATC...TACAG|TAA 2 1 5.848
118584233 GT-AG 0 1.000000099473604e-05 1847 rna-XM_016224117.1 21894356 2 8494824 8496670 Miniopterus natalensis 291302 GAG|GTAAGAATTT...CTGGCTTTAATC/CTGGCTTTAATC...TTCAG|AAA 0 1 11.754
118584234 GT-AG 0 1.000000099473604e-05 707 rna-XM_016224117.1 21894356 3 8493888 8494594 Miniopterus natalensis 291302 GAG|GTAAGACTTT...GTCACTTTACCC/CTTTAAGTCACT...TGTAG|CCA 1 1 18.45
118584235 GT-AG 0 1.000000099473604e-05 4093 rna-XM_016224117.1 21894356 4 8489756 8493848 Miniopterus natalensis 291302 AAG|GTAAGATATA...GCTTTTTTTTCT/GGTAAACATACA...TTTAG|AAT 1 1 19.591
118584236 GT-AG 0 9.1358534378818e-05 111 rna-XM_016224117.1 21894356 5 8489547 8489657 Miniopterus natalensis 291302 CAA|GTAAGTATTT...TTTATCTTGAAT/TGCCTTTTCATT...ATTAG|ACG 0 1 22.456
118584237 GT-AG 0 4.216679243008224e-05 14852 rna-XM_016224117.1 21894356 6 8474458 8489309 Miniopterus natalensis 291302 AAG|GTATGTAATT...CACTTCTAAGTG/TCACTTCTAAGT...CGTAG|GCG 0 1 29.386
118584238 GT-AG 0 1.000000099473604e-05 428 rna-XM_016224117.1 21894356 7 8473876 8474303 Miniopterus natalensis 291302 CCG|GTAATGTTAC...GTTCCTTTTGTG/CCTTTTGTGAGT...TCTAG|CCC 1 1 33.889
118584239 GT-AG 0 1.000000099473604e-05 1176 rna-XM_016224117.1 21894356 8 8472625 8473800 Miniopterus natalensis 291302 CAG|GTACGTGTGG...CAGATTTTACTT/ACAGATTTTACT...GGCAG|AAG 1 1 36.082
118584240 GT-AG 0 1.000000099473604e-05 3756 rna-XM_016224117.1 21894356 9 8468749 8472504 Miniopterus natalensis 291302 CAT|GTAGGTGACG...TATATCTTCATT/TATATCTTCATT...TGTAG|CTG 1 1 39.591
118584241 GT-AG 0 1.000000099473604e-05 1462 rna-XM_016224117.1 21894356 10 8467052 8468513 Miniopterus natalensis 291302 ACA|GTAAGTAGTC...ATACTATTGATA/ATACTATTGATA...TGCAG|AGA 2 1 46.462
118584242 GT-AG 0 1.000000099473604e-05 3907 rna-XM_016224117.1 21894356 11 8463050 8466956 Miniopterus natalensis 291302 ATG|GTGAGTTCTG...ATATACTTGATG/TTTTTTTTCATA...CTCAG|TAG 1 1 49.24
118584243 GT-AG 0 1.000000099473604e-05 2116 rna-XM_016224117.1 21894356 13 8458994 8461109 Miniopterus natalensis 291302 AAG|GTAAACGGGG...CCATTCTTCACT/TTGGTATTCATA...TTTAG|GAA 0 1 92.281
118584244 GT-AG 0 0.0007661773066459 5972 rna-XM_016224117.1 21894356 14 8452845 8458816 Miniopterus natalensis 291302 AGG|GTACGTTTTC...CCCATTTTAAAT/TTTAAATTGATG...CTTAG|GTT 0 1 97.456

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