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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
137658370 GT-AG 0 1.000000099473604e-05 43 rna-gnl|WGS:SJOL|mRNA16 25024123 1 281243 281285 Opisthorchis felineus 147828 CAG|GTTTGAAAAA...GTCTCGTTCATC/GTCTCGTTCATC...TCCAG|CAC 2 1 8.221
137658371 GT-AG 0 0.1228040595848984 34 rna-gnl|WGS:SJOL|mRNA16 25024123 2 281470 281503 Opisthorchis felineus 147828 ATG|GTATACTTCT...CGGTTTTTCACC/CGGTTTTTCACC...CCTAG|GGT 0 1 17.444
137658372 GT-AG 0 3.135521139996914e-05 35 rna-gnl|WGS:SJOL|mRNA16 25024123 3 281588 281622 Opisthorchis felineus 147828 ACG|GTATGGCGTA...GGTTTTGTAATC/TTTGTAATCATA...TTTAG|TGT 0 1 21.654
137658373 GT-AG 0 1.000000099473604e-05 31 rna-gnl|WGS:SJOL|mRNA16 25024123 4 281740 281770 Opisthorchis felineus 147828 GAG|GTGTGAAACT...CATTTCTAATTT/ACATTTCTAATT...TGTAG|AAC 0 1 27.519
137658374 GT-AG 0 0.0066346177482918 1183 rna-gnl|WGS:SJOL|mRNA16 25024123 5 281855 283037 Opisthorchis felineus 147828 CAG|GTATGCTGTT...CTTTTCTTTTTT/TTACCATTCAAT...TCTAG|GAT 0 1 31.729
137658375 GT-AG 0 1.000000099473604e-05 3476 rna-gnl|WGS:SJOL|mRNA16 25024123 6 283206 286681 Opisthorchis felineus 147828 CAG|GTAAGAAGTG...CTGTTTTTGACC/CTGTTTTTGACC...TTCAG|CCG 0 1 40.15
137658376 GT-AG 0 1.000000099473604e-05 2063 rna-gnl|WGS:SJOL|mRNA16 25024123 7 286885 288947 Opisthorchis felineus 147828 AGG|GTAAGTGATC...TCATCTTTATTT/TCTTATTTCATC...TTTAG|ATA 2 1 50.326
137658377 GT-AG 0 1.000000099473604e-05 1222 rna-gnl|WGS:SJOL|mRNA16 25024123 8 289159 290380 Opisthorchis felineus 147828 CAG|GTTTGATGTT...TTTTCCTTCACT/TTTTCCTTCACT...TCCAG|GTG 0 1 60.902
137658378 GT-AG 0 0.0001533907153914 124 rna-gnl|WGS:SJOL|mRNA16 25024123 9 290617 290740 Opisthorchis felineus 147828 ACG|GTACGTAGTC...TCAGTCTTGACA/TCAGTCTTGACA...TTTAG|GTG 2 1 72.732
137658379 GT-AG 0 0.0003225811800217 3612 rna-gnl|WGS:SJOL|mRNA16 25024123 10 290831 294442 Opisthorchis felineus 147828 AGT|GTAAGTTTAT...ACCATCTTACTA/GCTGTTTTTATT...TCCAG|AGA 2 1 77.243
137658380 GT-AG 0 1.000000099473604e-05 187 rna-gnl|WGS:SJOL|mRNA16 25024123 11 294552 294738 Opisthorchis felineus 147828 AAG|GTGAGTAGTG...GGGTTTTTACTG/ATTGTTTTCATT...TTCAG|GCT 0 1 82.707
137658381 GT-AG 0 1.000000099473604e-05 5156 rna-gnl|WGS:SJOL|mRNA16 25024123 12 294848 300003 Opisthorchis felineus 147828 AAG|GTAATAACCT...TAGTCATTAACA/GTCTAACTCACT...TTCAG|CCC 1 1 88.17
137658382 GT-AG 0 1.000000099473604e-05 4363 rna-gnl|WGS:SJOL|mRNA16 25024123 13 300133 304495 Opisthorchis felineus 147828 TCG|GTGAGTTTTA...ATTTCATTGTTC/GTGCATTTCATT...TTCAG|CGG 1 1 94.637

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