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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
213116531 GT-AG 0 1.000000099473604e-05 87 rna-XM_008657221.3 38490453 1 57237372 57237458 Zea mays 4577 AAG|GTGACGGATT...TTTGCTTTAGAA/TTTGTTCTGATC...CTCAG|GCG 2 1 18.924
213116532 GT-AG 0 1.000000099473604e-05 113 rna-XM_008657221.3 38490453 2 57237177 57237289 Zea mays 4577 TCT|GTGAGGGATT...TAGTTCTTTTCG/CTTAGATTCATA...TGCAG|GTC 0 1 20.947
213116533 GT-AG 0 0.0013951190724891 109 rna-XM_008657221.3 38490453 3 57236876 57236984 Zea mays 4577 GAG|GTATGTATTG...GTTTATTTGATG/GTATGTTTCATT...TTTAG|ATA 0 1 25.685
213116534 GT-AG 0 1.000000099473604e-05 125 rna-XM_008657221.3 38490453 4 57236686 57236810 Zea mays 4577 CAG|GTTATACTCA...TTTACCTTTTCT/AGTATGTTTACC...TGCAG|GTT 2 1 27.288
213116535 GT-AG 0 8.320732991581336e-05 77 rna-XM_008657221.3 38490453 5 57236449 57236525 Zea mays 4577 AAG|GTCTTCAGCC...ATTGTTTTAGAG/ACTCGTTTGATT...TACAG|GAT 0 1 31.236
213116536 GT-AG 0 0.0001671738179025 92 rna-XM_008657221.3 38490453 6 57236117 57236208 Zea mays 4577 CAG|GTTTCACTGG...TCATCTCTAGTA/AGCATAGTTAGT...TGCAG|GCC 0 1 37.158
213116537 GT-AG 0 1.4046922888492531e-05 422 rna-XM_008657221.3 38490453 7 57235578 57235999 Zea mays 4577 GAG|GTAACACTAC...TGTTTCTGATTT/TTGTTTCTGATT...TTTAG|GAT 0 1 40.044
213116538 GT-AG 0 1.000000099473604e-05 107 rna-XM_008657221.3 38490453 8 57235279 57235385 Zea mays 4577 GAG|GTTGGTCTAT...GTGTTTTTATAT/TGTGTTTTTATA...TTCAG|GTT 0 1 44.782
213116539 GT-AG 0 1.000000099473604e-05 97 rna-XM_008657221.3 38490453 9 57235103 57235199 Zea mays 4577 CAG|GTTTGTGATA...TTGTGCTTATAA/TTTGTGCTTATA...GACAG|AGC 1 1 46.731
213116540 GT-AG 0 0.0005929002069127 523 rna-XM_008657221.3 38490453 10 57233651 57234173 Zea mays 4577 GAG|GTATTTATGT...GCTGATTTAATT/GTCTTGTTCATT...TGTAG|GCT 0 1 69.652
213116541 GT-AG 0 0.0224151101080717 77 rna-XM_008657221.3 38490453 11 57233069 57233145 Zea mays 4577 TGG|GTATGTTGTG...CTGTTTTTATTT/TCTGTTTTTATT...CTCAG|ATA 1 1 82.112
213116542 GT-AG 0 0.000103064907361 100 rna-XM_008657221.3 38490453 12 57232784 57232883 Zea mays 4577 CAG|GTCCTTTTCA...GCGGTTTTAACT/GCGGTTTTAACT...TGCAG|AAT 0 1 86.677

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