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

✎ 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
13843012 GT-AG 0 1.000000099473604e-05 161 rna-XM_026079107.1 2569315 1 6878912 6879072 Apteryx rowi 308060 GAG|GTGAGTGCGG...AATTCCTTTCTA/TCCTTTCTAATC...ATCAG|ATA 2 1 1.998
13843013 GT-AG 0 1.000000099473604e-05 1168 rna-XM_026079107.1 2569315 2 6879183 6880350 Apteryx rowi 308060 CAG|GTAGGACAGG...CTTTTTTTGTTC/CATCTGCTGACT...TACAG|GTG 1 1 8.864
13843014 GT-AG 0 0.0003635518735114 315 rna-XM_026079107.1 2569315 3 6880461 6880775 Apteryx rowi 308060 GAG|GTGTGCATGG...ATATTCTTACCT/GATATTCTTACC...TTCAG|ACT 0 1 15.73
13843015 GT-AG 0 1.000000099473604e-05 1180 rna-XM_026079107.1 2569315 4 6880884 6882063 Apteryx rowi 308060 AAG|GTAGTACACT...TATTCTGTGATT/TATTCTGTGATT...TGTAG|CTT 0 1 22.472
13843016 GT-AG 0 6.220886574450346e-05 706 rna-XM_026079107.1 2569315 5 6882217 6882922 Apteryx rowi 308060 GCC|GTAAGTACTT...AAGATTTTGATG/TTCTTGTTGATT...CACAG|AAG 0 1 32.022
13843017 GT-AG 0 1.000000099473604e-05 446 rna-XM_026079107.1 2569315 6 6883054 6883499 Apteryx rowi 308060 GAA|GTAAGTGCTT...CATGTCTGAATT/TAAGTTCTTATG...TCAAG|AGG 2 1 40.2
13843018 GT-AG 0 1.000000099473604e-05 647 rna-XM_026079107.1 2569315 7 6883666 6884312 Apteryx rowi 308060 CTG|GTTAGTAGTA...TTTCTCATAATT/TCATTTCTCATA...CACAG|ATT 0 1 50.562
13843019 GT-AG 0 1.000000099473604e-05 551 rna-XM_026079107.1 2569315 8 6884448 6884998 Apteryx rowi 308060 AAG|GTAATGTTCA...AAACTTTTCATT/AAACTTTTCATT...TTCAG|AAT 0 1 58.989
13843020 GT-AG 0 1.000000099473604e-05 641 rna-XM_026079107.1 2569315 9 6885139 6885779 Apteryx rowi 308060 CAG|GTGAGCAGAA...CCTCCCTGGATA/TCTATACTAAAA...TGTAG|GTT 2 1 67.728
13843021 GT-AG 0 1.000000099473604e-05 342 rna-XM_026079107.1 2569315 10 6885895 6886236 Apteryx rowi 308060 GAG|GTAAGAGCAT...ATGTTCTTACTT/GATGTTCTTACT...TGCAG|ATC 0 1 74.906
13843022 GT-AG 0 1.000000099473604e-05 230 rna-XM_026079107.1 2569315 11 6886333 6886562 Apteryx rowi 308060 CAG|GTGATTCTCA...TTTCCCTTCCCA/CCTTCCCACACC...TTTAG|CTG 0 1 80.899
13843023 GT-AG 0 1.000000099473604e-05 375 rna-XM_026079107.1 2569315 12 6886704 6887078 Apteryx rowi 308060 GAG|GTTAGCAGCC...CCAGCTTTGCCT/GCTTTGCCTACT...TTCAG|GTG 0 1 89.7
13843024 GT-AG 0 1.000000099473604e-05 400 rna-XM_026079107.1 2569315 13 6887209 6887608 Apteryx rowi 308060 TAG|GTAAGTCATG...TTGTCCTTTTTT/GAAATACTGAAC...TTAAG|CTC 1 1 97.815

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