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)

12 rows where transcript_id = 26741166

✎ 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
148388504 GT-AG 0 0.0001200076700894 83 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 1 60316 60398 Pelomyxa schiedti 1580589 CAG|GTACACCAAA...TCCCCTTTTACA/CTGAAACTAACT...CATAG|ATA 0 1 3.195
148388505 GT-AG 0 0.0002686615401374 129 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 2 59869 59997 Pelomyxa schiedti 1580589 CAG|GTTTTATTTT...TCCCCCTTAGCA/AGTATCCTCACA...CTTAG|CAT 0 1 20.128
148388506 GT-AG 0 0.1861612258152901 42 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 3 59624 59665 Pelomyxa schiedti 1580589 CTG|GTACCTTCGT...TAAAGCTTAACA/TAAAGCTTAACA...CTAAG|GCA 2 1 30.937
148388507 GT-AG 0 1.000000099473604e-05 41 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 4 59542 59582 Pelomyxa schiedti 1580589 AAG|GTAGGGGAGT...ATGGCTTTGATA/ATGGCTTTGATA...CAAAG|ATC 1 1 33.12
148388508 GT-AG 0 1.000000099473604e-05 39 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 5 59458 59496 Pelomyxa schiedti 1580589 TCG|GTAAGTATGT...CTTTTTGTAACG/CTTTTTGTAACG...TCCAG|TAT 1 1 35.517
148388509 GT-AG 0 1.000000099473604e-05 43 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 6 59313 59355 Pelomyxa schiedti 1580589 GAG|GTGAGCAGCT...TTTTCCTTTTTA/TTCCTTTTTATA...AACAG|TTG 1 1 40.948
148388510 GT-AG 0 0.0039950514975151 45 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 7 59092 59136 Pelomyxa schiedti 1580589 AAT|GTGCCTTCCC...AAATTCTAGAAA/ATCACGTTGAAA...CCTAG|GTA 0 1 50.319
148388511 GT-AG 0 0.0854971186798396 70 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 8 58788 58857 Pelomyxa schiedti 1580589 CCT|GTACATATTT...CTTCCTTTGACT/CTTCCTTTGACT...GACAG|TAT 0 1 62.78
148388512 GT-AG 0 0.0094996153446437 41 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 9 58679 58719 Pelomyxa schiedti 1580589 CTT|GTACCACCCT...TTCATCTTCTCT/TCTCTACTGAGC...TGTAG|GTA 2 1 66.4
148388513 GT-AG 0 0.0688849220377819 47 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 10 58418 58464 Pelomyxa schiedti 1580589 CAA|GTTTCTTTCC...TTGCTCATGGCT/AGCTTGCTCATG...TCAAG|GTC 0 1 77.796
148388514 GT-AG 0 0.000480277100296 55 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 11 58242 58296 Pelomyxa schiedti 1580589 CCG|GTATGTGTAT...TATTCTATATCC/TCCATACTTACA...AACAG|CCA 1 1 84.239
148388515 GT-AG 0 1.000000099473604e-05 80 rna-gnl|WGS:JAHLWZ|Pelo_39_1 26741166 12 57995 58074 Pelomyxa schiedti 1580589 CAG|GTAATTCCAA...GAGTTGTTAGTT/CGTGGCCTAACT...ATTAG|TTC 0 1 93.131

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