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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
210096394 GC-AG 0 1.000000099473604e-05 94 rna-XM_034842994.1 38062813 1 88893 88986 Vitis riparia 96939 AAG|GCACGATATT...TCTCCCTTAATT/TTCGGTTTTATA...TACAG|AGG 0 1 7.804
210096395 GT-AG 0 2.4759231133742816e-05 556 rna-XM_034842994.1 38062813 2 88202 88757 Vitis riparia 96939 CAG|GTAATTTTAT...TTTCCCTTTTCT/TTATATCTCATA...CATAG|TTG 0 1 12.487
210096396 GT-AG 0 0.0083923581995231 9044 rna-XM_034842994.1 38062813 3 78995 88038 Vitis riparia 96939 AGA|GTATGTATGA...TTTTTCTTTTTA/TTTCTTTTTATC...TACAG|AAA 1 1 18.141
210096397 GT-AG 0 1.000000099473604e-05 1672 rna-XM_034842994.1 38062813 4 77240 78911 Vitis riparia 96939 AAT|GTGAGGCCAA...TTATCTTTATAA/ATTATCTTTATA...TGCAG|AAA 0 1 21.02
210096398 GT-AG 0 1.000000099473604e-05 111 rna-XM_034842994.1 38062813 5 77069 77179 Vitis riparia 96939 AAG|GTGCTGATCC...AATTTTTTATTA/TTCTTCCTCATT...GCCAG|GCC 0 1 23.101
210096399 GT-AG 0 0.0011579169865819 397 rna-XM_034842994.1 38062813 6 76459 76855 Vitis riparia 96939 CAG|GTATATTATA...GGTGTTTTCACT/GGTGTTTTCACT...CACAG|GAA 0 1 30.489
210096400 GT-AG 0 0.0009352157960406 640 rna-XM_034842994.1 38062813 7 75690 76329 Vitis riparia 96939 GAG|GTATGTATGT...TAAACTTTAAAT/AATTATTTGATA...TTCAG|GAA 0 1 34.964
210096401 GT-AG 0 0.000315162961048 462 rna-XM_034842994.1 38062813 8 74529 74990 Vitis riparia 96939 CAG|GTATGACTTT...GTATCTTTATCA/CGTATCTTTATC...TCCAG|GTA 0 1 59.209
210096402 GT-AG 0 1.000000099473604e-05 102 rna-XM_034842994.1 38062813 9 74234 74335 Vitis riparia 96939 CAG|GTTAGCATAT...ACTTGTTTAATG/CCAATACTTATA...TGCAG|AGA 1 1 65.904
210096403 GT-AG 0 0.0001932463933678 2077 rna-XM_034842994.1 38062813 10 71963 74039 Vitis riparia 96939 TCG|GTATGTGAAC...ATATTTTTATTT/GATATTTTTATT...TGCAG|GTT 0 1 72.633
210096404 GT-AG 0 0.001178926665494 184 rna-XM_034842994.1 38062813 11 71674 71857 Vitis riparia 96939 CAG|GTACCACTTC...TATTCATTTACT/CCACTATTCATT...GACAG|TTT 0 1 76.275
210096405 GT-AG 0 1.000000099473604e-05 235 rna-XM_034842994.1 38062813 12 71299 71533 Vitis riparia 96939 CAG|GTCAGCATTT...GACAGCTTAATG/GACAGCTTAATG...TGCAG|GGC 2 1 81.131
210096406 GT-AG 0 0.0007509277644294 94 rna-XM_034842994.1 38062813 13 70926 71019 Vitis riparia 96939 GAA|GTAATTTACT...TGAGTCTTAATG/GTGAGTCTTAAT...TGCAG|CTT 2 1 90.808

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