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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
160179268 GT-AG 0 42.0373440352287 99 Ptrif.0001s0218.1.v1.3.1 28701072 1 1646373 1646471 Citrus trifoliata 37690 CGA|GTACCTTTTT...TCTTTCTTAATT/CTTAATTTTATT...TCTAG|GCT 0 1 5.787
160179269 GT-AG 0 9.305796309085782e-05 483 Ptrif.0001s0218.1.v1.3.1 28701072 2 1646562 1647044 Citrus trifoliata 37690 CAG|GTTTTTGTTT...TATTTGTTAACT/TATTTGTTAACT...TATAG|ATT 0 1 8.634
160179270 GC-AG 0 1.6303683874288338e-05 177 Ptrif.0001s0218.1.v1.3.1 28701072 3 1647287 1647463 Citrus trifoliata 37690 AAG|GCATGCGATG...TAAATTTTAACA/TAAATTTTAACA...TGCAG|TCT 2 1 16.287
160179271 GT-AG 0 0.001775235985635 119 Ptrif.0001s0218.1.v1.3.1 28701072 4 1647528 1647646 Citrus trifoliata 37690 CAG|GTAACTTTCA...ACTACTCTATTC/TACTACTCTATT...AACAG|GTT 0 1 18.311
160179272 GT-AG 0 0.0004335917431603 96 Ptrif.0001s0218.1.v1.3.1 28701072 5 1648346 1648441 Citrus trifoliata 37690 GTT|GTAAGTCTAT...TTCTCTTTATCT/TAAATATTCATA...TCCAG|GTA 0 1 40.417
160179273 GT-AG 0 1.000000099473604e-05 215 Ptrif.0001s0218.1.v1.3.1 28701072 6 1648559 1648773 Citrus trifoliata 37690 GAG|GTTATAATAG...GAATTTTTGAAT/GAGATTCTGATT...GGCAG|ATA 0 1 44.118
160179274 GT-AG 0 0.0002091700086902 161 Ptrif.0001s0218.1.v1.3.1 28701072 7 1648906 1649066 Citrus trifoliata 37690 CTT|GTAAGTTAAA...TGACTTTTAACT/TGTTTTCTGACT...TGCAG|ACA 0 1 48.292
160179275 GT-AG 0 2.981868993809405e-05 271 Ptrif.0001s0218.1.v1.3.1 28701072 8 1649244 1649514 Citrus trifoliata 37690 AAG|GTAGAGTTTG...TTATTTTTATCT/TTTATTTTTATT...TGTAG|GGT 0 1 53.89
160179276 GT-AG 0 1.000000099473604e-05 88 Ptrif.0001s0218.1.v1.3.1 28701072 9 1649569 1649656 Citrus trifoliata 37690 GAG|GTTATTCTCT...CTGATTTTAATT/CTGATTTTAATT...TGCAG|GCA 0 1 55.598
160179277 GT-AG 0 1.000000099473604e-05 107 Ptrif.0001s0218.1.v1.3.1 28701072 10 1649720 1649826 Citrus trifoliata 37690 CGG|GTTTGAACCA...TTGCTTTTAAAT/TTGCTTTTAAAT...GGCAG|GTT 0 1 57.59
160179278 GT-AG 0 7.878938675302446e-05 83 Ptrif.0001s0218.1.v1.3.1 28701072 11 1650760 1650842 Citrus trifoliata 37690 ATG|GTAATTCTTT...TTTTCATTAATA/TGCATTTTCATT...CACAG|ATT 0 1 87.097
160179279 GT-AG 0 1.000000099473604e-05 137 Ptrif.0001s0218.1.v1.3.1 28701072 12 1650971 1651107 Citrus trifoliata 37690 CAG|GTAAATGTGC...GAATCTTTATGC/TGAATCTTTATG...TTCAG|GTA 2 1 91.145

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