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

✎ 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
51565260 GT-AG 0 1.000000099473604e-05 1830 rna-XM_042018824.1 9472547 2 140852 142681 Corvus kubaryi 68294 GAG|GTGGGACCTC...TGACCCCTGACC/TGACCCCTGACC...CCCAG|GTG 2 1 8.072
51565261 GT-AG 0 1.000000099473604e-05 419 rna-XM_042018824.1 9472547 4 142918 143336 Corvus kubaryi 68294 AAG|GTGGGGGCCG...CAGCCGGTGAGC/CAGCCGGTGAGC...GGCAG|GTG 0 1 18.325
51565262 GT-AG 0 1.000000099473604e-05 250 rna-XM_042018824.1 9472547 5 143498 143747 Corvus kubaryi 68294 CAG|GTACGGGGGT...GTGGGTTTGATG/GTGGGTTTGATG...CCCAG|GCT 2 1 25.349
51565263 GT-AG 0 1.000000099473604e-05 242 rna-XM_042018824.1 9472547 6 143929 144170 Corvus kubaryi 68294 CAG|GTAACACACC...GGTCCCACACCG/GGGGGTCCCACA...CACAG|GTG 0 1 33.246
51565264 GT-AG 0 1.000000099473604e-05 230 rna-XM_042018824.1 9472547 7 144895 145124 Corvus kubaryi 68294 TCG|GTGAGCAGAG...GCCCCCCTGACT/GCCCCCCTGACT...TGCAG|GCA 1 1 64.834
51565265 GT-AG 0 1.000000099473604e-05 350 rna-XM_042018824.1 9472547 8 145229 145578 Corvus kubaryi 68294 CAG|GTATGGACAC...ATTCCCCTGACC/TTGCCCCTGATT...CCCAG|GTG 0 1 69.372
51565266 GT-AG 0 1.000000099473604e-05 92 rna-XM_042018824.1 9472547 9 145747 145838 Corvus kubaryi 68294 AAG|GTGAGGGAAA...GCCACCCTGACC/GCCACCCTGACC...CTCAG|ACA 0 1 76.702
51565267 GT-AG 0 1.18944813516495 737 rna-XM_042018824.1 9472547 10 146008 146744 Corvus kubaryi 68294 CAG|GTATCCCTGG...CCCCCTTTGTCT/TTTGGGCTGAGC...CCCAG|GAC 1 1 84.075
51565268 GT-AG 0 1.000000099473604e-05 107 rna-XM_042018824.1 9472547 11 146816 146922 Corvus kubaryi 68294 AAG|GTGAGCGCAG...CCCCCCATGACT/GCTGCAGTGACC...ACCAG|GTG 0 1 87.173
51565269 GT-AG 0 7.514686142671399e-05 688 rna-XM_042018824.1 9472547 12 147064 147751 Corvus kubaryi 68294 CAG|GTACCACCCC...GGTCCCTGGGCC/CATGGGGCCATT...TGCAG|GTG 0 1 93.325
51565384 GT-AG 0 1.000000099473604e-05 814 rna-XM_042018824.1 9472547 1 139896 140709 Corvus kubaryi 68294 GGG|GTGAGGGGAC...CACCCCTCACTG/CCACCCCTCACT...CCCAG|GCT   0 2.487

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