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)

14 rows where transcript_id = 13349325

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
71011273 GT-AG 0 0.0002656178593001 106 mRNA_353 13349325 2 27313074 27313179 Entomophaga maimaiga 42810 ATG|GTAATCTATC...CAGCTTTTAAAA/ACGTTTCTAACA...TCTAG|GCA 0 1 4.452
71011274 GT-AG 0 1.639609410621925e-05 70 mRNA_353 13349325 3 27313201 27313270 Entomophaga maimaiga 42810 GAA|GTAAGATTCT...ATTTATTTAACA/ATTTATTTAACA...CATAG|AAA 0 1 5.206
71011275 GT-AG 0 1.000000099473604e-05 46 mRNA_353 13349325 4 27313388 27313433 Entomophaga maimaiga 42810 CAA|GTAAGTCTTA...AAGGCTTGGATT/CTTGGATTAAAG...TTTAG|AGT 0 1 9.408
71011276 GT-AG 0 1.000000099473604e-05 60 mRNA_353 13349325 5 27313471 27313530 Entomophaga maimaiga 42810 CTG|GTAAGTACAT...ATCTTTTTATAT/TATCTTTTTATA...CACAG|TCC 1 1 10.736
71011277 GT-AG 0 1.000000099473604e-05 37 mRNA_353 13349325 6 27313761 27313797 Entomophaga maimaiga 42810 CAG|GTTAAAAGCA...ATACACTTATAT/TATACACTTATA...TTTAG|GTC 0 1 18.995
71011278 GT-AG 0 1.000000099473604e-05 36 mRNA_353 13349325 7 27313894 27313929 Entomophaga maimaiga 42810 AAG|GTGAAGGCAT...CTCTCTCTGATA/CTCTCTCTGATA...TAAAG|GTA 0 1 22.442
71011279 GT-AG 0 0.0017034337524733 38 mRNA_353 13349325 8 27314052 27314089 Entomophaga maimaiga 42810 TAA|GTAATTTTAT...TTGTTTTTAATT/TTGTTTTTAATT...TAAAG|AAC 2 1 26.822
71011280 GT-AG 0 0.0075309782249562 37 mRNA_353 13349325 9 27314215 27314251 Entomophaga maimaiga 42810 ATG|GTATTTTTAG...TAGCTTTCGACT/TTTCGACTAAAT...GTTAG|GAT 1 1 31.311
71011281 GT-AG 0 1.000000099473604e-05 44 mRNA_353 13349325 10 27314495 27314538 Entomophaga maimaiga 42810 GAG|GTTAGTTTTA...TCTATTTTGATG/TCTATTTTGATG...TCTAG|ACA 1 1 40.036
71011282 GT-AG 0 1.000000099473604e-05 35 mRNA_353 13349325 11 27314639 27314673 Entomophaga maimaiga 42810 ACG|GTAAGTCTAT...CCGCATTCAATT/ACCGCATTCAAT...TTTAG|ATT 2 1 43.627
71011283 GT-AG 0 5.122296420683766e-05 34 mRNA_353 13349325 12 27316067 27316100 Entomophaga maimaiga 42810 GAG|GTAGTTGATT...TTTTCTTTAATT/AATTTTCTCACA...TTTAG|ATT 0 1 93.645
71011284 GT-AG 0 2.7921274872143654e-05 43 mRNA_353 13349325 13 27316162 27316204 Entomophaga maimaiga 42810 AAG|GTAATATTTG...TTGTCTTTATTA/TTTGTCTTTATT...TCTAG|TTA 1 1 95.835
71011285 GT-AG 0 2.1472464520793745e-05 36 mRNA_353 13349325 14 27316234 27316269 Entomophaga maimaiga 42810 CGA|GTAAGTCTTG...ACTTCTCTGACC/ACTTCTCTGACC...TTTAG|GGT 0 1 96.876
71015007 GT-AG 0 0.0005227189553379 163 mRNA_353 13349325 1 27312867 27313029 Entomophaga maimaiga 42810 CTG|GTATGTAATA...TTGTTTTTAAGT/TTGTTTTTAAGT...ACTAG|AAT   0 4.345

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