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)

11 rows where transcript_id = 36995192

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
204419042 GT-AG 0 1.000000099473604e-05 999 rna-XM_038845294.1 36995192 1 8831177 8832175 Tripterygium wilfordii 458696 CAG|GTGAACCACA...TTTATTTTAATT/TTTATTTTAATT...TTCAG|GTA 0 1 7.115
204419043 GT-AG 0 6.449077600982777e-05 566 rna-XM_038845294.1 36995192 2 8830556 8831121 Tripterygium wilfordii 458696 TGC|GTAAGTGTGC...TTTCCATTGATT/TATGTTCTCAAG...TACAG|AGG 1 1 8.548
204419044 GT-AG 0 0.0020530301047668 98 rna-XM_038845294.1 36995192 3 8830282 8830379 Tripterygium wilfordii 458696 AAG|GTATACGTGT...TTGGGCTTGAAA/CTTGAAATTACT...AGCAG|GTT 0 1 13.135
204419045 GT-AG 0 0.000264719866354 100 rna-XM_038845294.1 36995192 4 8829960 8830059 Tripterygium wilfordii 458696 ACA|GTAAGCATCA...AATATCTAAATA/AAATATCTAAAT...TCAAG|GTC 0 1 18.921
204419046 GT-AG 0 2.195678290558321e-05 106 rna-XM_038845294.1 36995192 5 8829615 8829720 Tripterygium wilfordii 458696 AAT|GTAAGTCATA...TTGTTTTTACCT/ATTGTTTTTACC...ACTAG|GGC 2 1 25.15
204419047 GT-AG 0 0.0001726192790246 129 rna-XM_038845294.1 36995192 6 8828960 8829088 Tripterygium wilfordii 458696 CAG|GTAACTCCTG...CACTGCTTATTC/ACACTGCTTATT...GTCAG|GGG 0 1 38.858
204419048 GT-AG 0 9.92009592890497e-05 76 rna-XM_038845294.1 36995192 7 8828610 8828685 Tripterygium wilfordii 458696 AAG|GTAACTAAAC...TCTTTTTTATTA/TTCTTTTTTATT...TATAG|GAA 1 1 45.999
204419049 GT-AG 0 2.634743894466896e-05 94 rna-XM_038845294.1 36995192 8 8827849 8827942 Tripterygium wilfordii 458696 GAG|GTAAGTTTTA...TAAGTCTTGCCT/TAAAGATTCATA...TCCAG|TGG 2 1 63.383
204419050 GT-AG 0 8.213731625641327e-05 80 rna-XM_038845294.1 36995192 9 8827540 8827619 Tripterygium wilfordii 458696 AAA|GTAAGTTTCA...ATAACTTTATAA/GATAACTTTATA...TGCAG|GTG 0 1 69.351
204419051 GT-AG 0 1.000000099473604e-05 80 rna-XM_038845294.1 36995192 10 8827193 8827272 Tripterygium wilfordii 458696 AAG|GTACGAACTC...CTTTCCTTACTT/CCTTTCCTTACT...TGCAG|GTT 0 1 76.31
204419052 GT-AG 0 0.2062967262787803 98 rna-XM_038845294.1 36995192 11 8826831 8826928 Tripterygium wilfordii 458696 AAG|GTATTCTCCA...TCTTTTTTATCC/TTCTTTTTTATC...CGCAG|ACT 0 1 83.19

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