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

✎ 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
134640268 GT-AG 0 1.000000099473604e-05 160 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 3 984 1143 Olpidium bornovanus 278681 AGC|GTGAGTCCGG...GCGCTTTTACCC/CGCGCTTTTACC...CCCAG|CTT 1 1 29.92
134640269 GT-AG 0 1.000000099473604e-05 252 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 4 1199 1450 Olpidium bornovanus 278681 TCG|GTGCGCGCTC...GCGCGCTCGCCG/CGCGCGCTCGCC...AGCAG|ATC 2 1 32.869
134640270 GT-AG 0 0.069536506505377 139 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 5 1573 1711 Olpidium bornovanus 278681 ACG|GTACCCGTTT...GCGTCTCTGGCA/CTCTGGCAAAAA...CGCAG|GTC 1 1 39.41
134640271 GT-AG 0 1.000000099473604e-05 72 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 6 1827 1898 Olpidium bornovanus 278681 TCG|GTAAGCGGAG...TCATCATTATAT/GTGGTTTTCATC...TTCAG|CCG 2 1 45.576
134640272 GT-AG 0 1.1634781448596146e-05 59 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 7 1925 1983 Olpidium bornovanus 278681 CCG|GTACGGTCCT...TTTTTTTTTTCC/TTTTTTTCCATT...CGCAG|GTG 1 1 46.971
134640273 GT-AG 0 0.0003293693748844 218 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 8 2017 2234 Olpidium bornovanus 278681 GCT|GTGAGCTTTT...GGTTTTTTTTTT/GACGGAGAAACC...GCCAG|ACA 1 1 48.74
134640274 GT-AG 0 1.000000099473604e-05 163 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 9 2287 2449 Olpidium bornovanus 278681 CAC|GTGAGTTCGA...GGGGCCCGGATT/GGGGCCCGGATT...GACAG|GGT 2 1 51.528
134640275 GT-AG 0 1.000000099473604e-05 276 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 10 2493 2768 Olpidium bornovanus 278681 TAT|GTGAGCGAAG...TCTTTGTTAATC/TCTTTGTTAATC...CGCAG|GGA 0 1 53.834
134640276 GT-AG 0 1.000000099473604e-05 107 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 11 3469 3575 Olpidium bornovanus 278681 GTG|GTGAGTTTTT...TTTTCTTTCGTT/TTTTTTTTCTTT...CGCAG|GCG 1 1 91.367
134640277 GT-AG 0 1.4862869890089544e-05 112 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 1 422 533 Olpidium bornovanus 278681 TCG|GTAGTGTGTG...TTTTATTTATCT/CTTTTATTTATC...GCAAG|GGG   0 16.568
134640278 GT-AG 0 1.000000099473604e-05 154 rna-gnl|WGS:JAEFCI|BJ554DRAFT_mRNA2642 24633799 2 695 848 Olpidium bornovanus 278681 AAA|GTGCGGAGTG...GCGCCCTTCGCT/CCCCCCTCCACC...GGCAG|TAC   0 25.201

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