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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
13842945 GT-AG 0 1.000000099473604e-05 905 rna-XM_026092013.1 2569308 2 7179833 7180737 Apteryx rowi 308060 CAG|GTAGGATGGG...CTGCTGTTAACC/CTGCTGTTAACC...TGCAG|TGT 1 1 10.115
13842946 GT-AG 0 1.000000099473604e-05 4336 rna-XM_026092013.1 2569308 3 7180816 7185151 Apteryx rowi 308060 AGG|GTAAGTAAAA...TCAGCTTTCACT/TCAGCTTTCACT...TTTAG|ATA 1 1 14.839
13842947 GT-AG 0 2.0096414840793555e-05 5133 rna-XM_026092013.1 2569308 4 7185335 7190467 Apteryx rowi 308060 CAG|GTATTGGATA...GTTCCATTAATT/ATTTTACTCATC...ACTAG|CCA 1 1 25.924
13842948 GT-AG 0 1.000000099473604e-05 3901 rna-XM_026092013.1 2569308 5 7190672 7194572 Apteryx rowi 308060 CAG|GTCAGTCATT...TATCCTTTTGTC/CATTGCATGACC...GACAG|CAG 1 1 38.28
13842949 GT-AG 0 0.013527664682222 935 rna-XM_026092013.1 2569308 6 7194838 7195772 Apteryx rowi 308060 CAG|GTACCTAATG...CTTTTCTAAACA/TCTTTTCTAAAC...CACAG|CTT 2 1 54.331
13842950 GT-AG 0 1.000000099473604e-05 6110 rna-XM_026092013.1 2569308 7 7196021 7202130 Apteryx rowi 308060 CTG|GTAAGGAAAG...TTTTTCATATCT/CCATTTTTCATA...TCAAG|GTA 1 1 69.352
13842951 GT-AG 0 1.000000099473604e-05 20484 rna-XM_026092013.1 2569308 8 7202285 7222768 Apteryx rowi 308060 AAA|GTAAGTCTGT...GTGATTTTGGTG/AGACTTTTCAAA...CGCAG|GCG 2 1 78.68
13842952 GT-AG 0 1.000000099473604e-05 4560 rna-XM_026092013.1 2569308 9 7222825 7227384 Apteryx rowi 308060 AAC|GTGAGTATTT...TTTTTTTTAAAT/TTTTTTTTAAAT...TGCAG|AAC 1 1 82.071
13842953 GT-AG 0 1.000000099473604e-05 933 rna-XM_026092013.1 2569308 10 7227447 7228379 Apteryx rowi 308060 AAG|GTAAAATCTT...TTAGTTTTATTT/ATTAGTTTTATT...TACAG|CTA 0 1 85.827
13842954 GT-AG 0 1.950616186035913e-05 854 rna-XM_026092013.1 2569308 11 7228521 7229374 Apteryx rowi 308060 AAG|GTATTGACAT...TATTTGTTAACC/TATTTGTTAACC...TCTAG|GCA 0 1 94.367
13842955 GT-AG 0 9.786215489243967e-05 1952 rna-XM_026092013.1 2569308 12 7229452 7231403 Apteryx rowi 308060 AAG|GTAAGTTTTC...TTTTTTTTGAAA/TGTCTCTTCATT...CCTAG|ATT 2 1 99.031
13843982 GC-AG 0 1.000000099473604e-05 3241 rna-XM_026092013.1 2569308 1 7176430 7179670 Apteryx rowi 308060 CAG|GCTATCAGGC...ACTATCTAACCA/CACTATCTAACC...CTCAG|ATG   0 0.606

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