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)

13 rows where transcript_id = 32739500

✎ 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
183117086 GT-AG 0 0.0048566731790118 969 rna-XM_011072866.2 32739500 1 299157 300125 Sesamum indicum 4182 GGG|GTATGCTGAT...CAATCTTGGAAT/GTTTGTTTCATA...TGCAG|CCG 0 1 2.488
183117087 GT-AG 0 1.000000099473604e-05 93 rna-XM_011072866.2 32739500 2 298868 298960 Sesamum indicum 4182 AAG|GTTAGTCTGC...TTTTTCTTCCCT/TCTTCCCTCATT...TTTAG|GGT 1 1 8.51
183117088 GT-AG 0 1.000000099473604e-05 145 rna-XM_011072866.2 32739500 3 298541 298685 Sesamum indicum 4182 TCA|GTAAGTCAGC...ATCTCCTTGCAC/TTTTCTCCCATC...AATAG|GTC 0 1 14.101
183117089 GT-AG 0 1.000000099473604e-05 90 rna-XM_011072866.2 32739500 4 298333 298422 Sesamum indicum 4182 CAG|GTAGTTGCTT...TTTGTCGTATCC/AGATCATTAAAT...TGCAG|TTC 1 1 17.727
183117090 GT-AG 0 2.2914450047897062e-05 284 rna-XM_011072866.2 32739500 5 297862 298145 Sesamum indicum 4182 GAC|GTAAGCGTAT...TTAATCTAGATG/ATAAATTTAATC...GTCAG|GGC 2 1 23.472
183117091 GT-AG 0 1.000000099473604e-05 106 rna-XM_011072866.2 32739500 6 297489 297594 Sesamum indicum 4182 GAG|GTTAGTCAAT...TATTCCTTTTTT/TCTGAGCTTACC...GTCAG|GTA 2 1 31.674
183117092 GT-AG 0 1.000000099473604e-05 170 rna-XM_011072866.2 32739500 7 296973 297142 Sesamum indicum 4182 AAG|GTAAGTGATA...GTAACTTTAATT/GTAACTTTAATT...TGCAG|AGA 0 1 42.304
183117093 GT-AG 0 0.0236846915126232 94 rna-XM_011072866.2 32739500 8 296741 296834 Sesamum indicum 4182 CAG|GTATTTTCTT...ATCTTTTTATCC/TTTATCCTGACC...AACAG|GTC 0 1 46.544
183117094 GT-AG 0 1.000000099473604e-05 571 rna-XM_011072866.2 32739500 9 296044 296614 Sesamum indicum 4182 TTG|GTAGGTGATT...ACAGTCTTATTT/TCTTATTTTATG...TTCAG|ATT 0 1 50.415
183117095 GT-AG 0 1.000000099473604e-05 96 rna-XM_011072866.2 32739500 10 295735 295830 Sesamum indicum 4182 GAT|GTGGGTGTCA...ATCTCCATGATC/GTAATGCTAAAT...TGCAG|ATC 0 1 56.959
183117096 GT-AG 0 0.0002015254567228 464 rna-XM_011072866.2 32739500 11 295006 295469 Sesamum indicum 4182 AAG|GTACTTTTTA...TGATTCTCATAT/ATGATTCTCATA...GACAG|GAT 1 1 65.1
183117097 GT-AG 0 2.6386806119410008e-05 85 rna-XM_011072866.2 32739500 12 294724 294808 Sesamum indicum 4182 GAG|GTGCTTTTTT...ATAGTTTTATTG/AATAGTTTTATT...TTTAG|ATC 0 1 71.152
183117098 GT-AG 0 1.3075423010910696e-05 208 rna-XM_011072866.2 32739500 13 294165 294372 Sesamum indicum 4182 GAG|GTAAGCAACA...TTATTTTTATTC/TTTATTTTTATT...TGCAG|ATA 0 1 81.935

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