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

✎ 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
137151378 GT-AG 0 1.000000099473604e-05 4150 rna-XM_041427702.1 24953035 2 5362810 5366959 Onychostruthus taczanowskii 356909 AAG|GTAAGGTATA...GAATTTTTAGGA/GTAATACTGAAT...CTCAG|GAG 0 1 48.063
137151379 GT-AG 0 1.000000099473604e-05 951 rna-XM_041427702.1 24953035 3 5367284 5368234 Onychostruthus taczanowskii 356909 CAG|GTACGGATGG...AATTTTTTTTCT/TTCAAATTAAAT...AATAG|CAT 0 1 56.966
137151380 GT-AG 0 0.00017247340382 418 rna-XM_041427702.1 24953035 4 5368581 5368998 Onychostruthus taczanowskii 356909 CAA|GTAAGTTTCA...TCTTTCTTCTCA/GTAAATCTCAGG...TGCAG|ATA 1 1 66.474
137151381 GT-AG 0 1.000000099473604e-05 4790 rna-XM_041427702.1 24953035 5 5369066 5373855 Onychostruthus taczanowskii 356909 ACC|GTAAGTAGAC...ACTTCCTGGATA/CCTGATTTAACA...TGCAG|GCG 2 1 68.315
137151382 GT-AG 0 1.000000099473604e-05 852 rna-XM_041427702.1 24953035 6 5373999 5374850 Onychostruthus taczanowskii 356909 ATG|GTAAGAAGGT...TTCATTTTAATC/TCTTTTCTGATT...AATAG|TGG 1 1 72.245
137151383 GT-AG 0 1.5080155100583072e-05 1338 rna-XM_041427702.1 24953035 7 5374955 5376292 Onychostruthus taczanowskii 356909 CTG|GTAAGTCTGC...TTGTTTTTAATA/AATTATTTCACT...CCAAG|GGA 0 1 75.103
137151384 GT-AG 0 1.000000099473604e-05 1190 rna-XM_041427702.1 24953035 8 5376369 5377558 Onychostruthus taczanowskii 356909 CAG|GTTTGTTGAT...CTTACTTTTACC/CTTACTTTTACC...TACAG|GAT 1 1 77.192
137151385 GT-AG 0 0.0005311855353495 1126 rna-XM_041427702.1 24953035 9 5377648 5378773 Onychostruthus taczanowskii 356909 CTT|GTAAGTTACT...TGTTTTTTAAAC/TGTTTTTTAAAC...AACAG|ATA 0 1 79.637
137151386 GT-AG 0 1.000000099473604e-05 203 rna-XM_041427702.1 24953035 10 5378924 5379126 Onychostruthus taczanowskii 356909 AAG|GTAAGTAATT...GTTCCTTTATCT/ATATCATTTACC...TGAAG|AGT 0 1 83.759
137151387 GT-AG 0 2.820704598388885e-05 398 rna-XM_041427702.1 24953035 11 5379307 5379704 Onychostruthus taczanowskii 356909 ACA|GTAAGTGCTG...TTTGCCTCAACT/CTTTGCCTCAAC...CAAAG|GCC 0 1 88.706
137151388 GT-AG 0 1.000000099473604e-05 1044 rna-XM_041427702.1 24953035 12 5379905 5380948 Onychostruthus taczanowskii 356909 CAG|GTAAGACCAA...GAGGCCATAGGA/CCAATGCTAATG...CTCAG|GGT 2 1 94.202
137154334 GT-AG 0 1.000000099473604e-05 29194 rna-XM_041427702.1 24953035 1 5331925 5361118 Onychostruthus taczanowskii 356909 CAG|GTGAGCCAGC...AATTGCTTCTCT/CAATGATTCATT...TTCAG|GAC   0 7.997

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