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

✎ 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
211079538 GT-AG 0 1.000000099473604e-05 344 rna-XM_046983321.1 38228131 1 2522828 2523171 Xenia sp. carnegie-2017 2897299 GCG|GTGAGTAAGA...TAATCTTTATCC/ATTGATCTAATT...AATAG|ATG 1 1 1.621
211079539 GT-AG 0 0.0057564400737283 4601 rna-XM_046983321.1 38228131 2 2518187 2522787 Xenia sp. carnegie-2017 2897299 ATT|GTAAGTTTTA...TTTTTTTTATCA/TTTTTTTTTATC...CACAG|TCG 2 1 2.869
211079540 GT-AG 0 1.000000099473604e-05 351 rna-XM_046983321.1 38228131 3 2517795 2518145 Xenia sp. carnegie-2017 2897299 AAG|GTATGGAAAA...TGACTTTTGATT/ACAATATTGACT...TAAAG|TGC 1 1 4.147
211079541 GT-AG 0 1.000000099473604e-05 1777 rna-XM_046983321.1 38228131 4 2515727 2517503 Xenia sp. carnegie-2017 2897299 AAG|GTAGGTGATA...TCGATCTTATTT/TCTTATTTTATA...TATAG|TGT 1 1 13.221
211079542 GT-AG 0 1.000000099473604e-05 317 rna-XM_046983321.1 38228131 5 2514978 2515294 Xenia sp. carnegie-2017 2897299 TAG|GTAAGTAGAT...TGTTTCTTGACC/TGTTTCTTGACC...TTCAG|GTC 1 1 26.692
211079543 GT-AG 0 4.948166585747453e-05 109 rna-XM_046983321.1 38228131 6 2514853 2514961 Xenia sp. carnegie-2017 2897299 AAG|GTAAACCGTT...AGAACTTTAGCT/TTGTGTGTAATT...TTCAG|TGG 2 1 27.191
211079544 GT-AG 0 0.0002306112066752 75 rna-XM_046983321.1 38228131 7 2514389 2514463 Xenia sp. carnegie-2017 2897299 AGT|GTAAGTCTGG...TTTATCTTACTA/ACTAGCTTTATC...TTCAG|ATC 1 1 39.32
211079545 GT-AG 0 1.378156930881372e-05 91 rna-XM_046983321.1 38228131 8 2514288 2514378 Xenia sp. carnegie-2017 2897299 TAT|GTAAGTTGAA...GCTTGCTTGAAT/GCTTGCTTGAAT...TTTAG|GAC 2 1 39.632
211079546 GT-AG 0 1.000000099473604e-05 155 rna-XM_046983321.1 38228131 9 2513708 2513862 Xenia sp. carnegie-2017 2897299 CAG|GTAAAGAAGC...CAATTTTCAAAG/TGGTTATTCATT...TATAG|AGC 1 1 52.884
211079547 GT-AG 0 0.000317475524075 621 rna-XM_046983321.1 38228131 10 2512871 2513491 Xenia sp. carnegie-2017 2897299 GTG|GTAAGTTTAG...TCATCTTTAATT/TCATCTTTAATT...CGCAG|AGT 1 1 59.62
211079548 GT-AG 0 0.0257502829839856 146 rna-XM_046983321.1 38228131 11 2512485 2512630 Xenia sp. carnegie-2017 2897299 AAC|GTATGTATTG...CGATTTTTATCA/ACGATTTTTATC...CATAG|AAG 1 1 67.103
211079549 GT-AG 0 1.000000099473604e-05 493 rna-XM_046983321.1 38228131 12 2511807 2512299 Xenia sp. carnegie-2017 2897299 GAG|GTAAGGCTCG...TAGTTCTCAATG/ATAGTTCTCAAT...TTTAG|CTG 0 1 72.872

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