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

✎ 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
213932845 GT-AG 0 5.039504557564641e-05 167 rna-XM_025070598.1 38690308 1 32462088 32462254 Ziziphus jujuba 326968 TAG|GTATTGGACC...TTTATTTTAATT/TTTATTTTAATT...TGAAG|GTG 1 1 25.714
213932846 GT-AG 0 1.000000099473604e-05 1038 rna-XM_025070598.1 38690308 2 32462384 32463421 Ziziphus jujuba 326968 AAG|GTAAAATCTT...TTTTTCATAACC/TCTTTTTTCATA...TTCAG|GGA 1 1 28.254
213932847 GT-AG 0 0.0004984836232738 112 rna-XM_025070598.1 38690308 3 32463574 32463685 Ziziphus jujuba 326968 AAG|GTAACTAACT...TTTTTTTTAGTA/ATTTTTTTTAGT...TTCAG|GGT 0 1 31.246
213932848 GT-AG 0 0.000177608192149 117 rna-XM_025070598.1 38690308 4 32463897 32464013 Ziziphus jujuba 326968 TTG|GTTTGTTTAT...ATAATCTCAATG/TATAATCTCAAT...TTCAG|ACA 1 1 35.401
213932849 GT-AG 0 7.767252594478479e-05 113 rna-XM_025070598.1 38690308 5 32464252 32464364 Ziziphus jujuba 326968 ATA|GTAAGTGTTT...TTCATCTTAAAT/GTTTTGTTAACA...TGCAG|TGG 2 1 40.087
213932850 GT-AG 0 1.000000099473604e-05 154 rna-XM_025070598.1 38690308 6 32464516 32464669 Ziziphus jujuba 326968 CAA|GTGAGAGCTA...TTGGATTTGACA/TTGGATTTGACA...TATAG|GCA 0 1 43.06
213932851 TA-AT 0 7.332599522992186e-05 3217 rna-XM_025070598.1 38690308 7 32464973 32468189 Ziziphus jujuba 326968 CGA|TAAAGATGTC...TGTATAGTAACT/TGTATAGTAACT...AAAAT|ATC 0 1 49.025
213932852 GT-AG 0 1.000000099473604e-05 109 rna-XM_025070598.1 38690308 8 32469589 32469697 Ziziphus jujuba 326968 TAG|GTAATATGGG...TTGCTCATATTG/CATTTGCTCATA...TGAAG|GTG 1 1 76.57
213932853 GT-AG 0 1.000000099473604e-05 1285 rna-XM_025070598.1 38690308 9 32469821 32471105 Ziziphus jujuba 326968 AAG|GTTAGGTGTT...GCCTTATTAATT/GCCTTATTAATT...ATTAG|ACA 1 1 78.992
213932854 GT-AG 0 1.000000099473604e-05 97 rna-XM_025070598.1 38690308 10 32471267 32471363 Ziziphus jujuba 326968 AAG|GTAATTAACT...CTAATCTTATTT/ACTAATCTTATT...CTCAG|GGT 0 1 82.162
213932855 GT-AG 0 0.0001535255767167 129 rna-XM_025070598.1 38690308 11 32471575 32471703 Ziziphus jujuba 326968 TCG|GTTTGTTTAT...TTAATTTGAATG/ATTGGATTAATT...TACAG|ATA 1 1 86.316
213932856 GT-AG 0 6.55918265051293e-05 76 rna-XM_025070598.1 38690308 12 32471942 32472017 Ziziphus jujuba 326968 ATG|GTAAATATTT...TTCATCTTAAAT/CAACTTTTCATC...TACAG|CGG 2 1 91.002
213932857 GT-AG 0 1.000000099473604e-05 182 rna-XM_025070598.1 38690308 13 32472169 32472350 Ziziphus jujuba 326968 CAT|GTAAGTGCAT...AGCACCCTGACT/TTGGATTTCAAA...TATAG|GCA 0 1 93.975

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