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

✎ 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
145281417 GT-AG 0 1.000000099473604e-05 13290 rna-gnl|WGS:LOND|AHF37_00080 26253916 1 178003 191292 Paragonimus kellicotti 100269 ATG|GTCAGTTTGA...TTTGTTTTAAAA/TTTGTTTTAAAA...TTTAG|ATC 0 1 10.73
145281418 GT-AG 0 1.000000099473604e-05 15583 rna-gnl|WGS:LOND|AHF37_00080 26253916 2 162321 177903 Paragonimus kellicotti 100269 CAT|GTGAGTGCTC...CACGTTTCAATT/CCACGTTTCAAT...TGCAG|GTG 0 1 14.381
145281419 GT-AG 0 1.000000099473604e-05 4431 rna-gnl|WGS:LOND|AHF37_00080 26253916 3 157794 162224 Paragonimus kellicotti 100269 CTG|GTGAGTTTTG...CACGTTTCAATT/CCACGTTTCAAT...TGCAG|GTG 0 1 17.92
145281420 GT-AG 0 1.000000099473604e-05 17356 rna-gnl|WGS:LOND|AHF37_00080 26253916 4 140342 157697 Paragonimus kellicotti 100269 CTG|GTGAGTTTTG...TCTGTTTTCATC/TCTGTTTTCATC...TTTAG|AAT 0 1 21.46
145281421 GT-AG 0 0.0001244588142106 3655 rna-gnl|WGS:LOND|AHF37_00080 26253916 5 136549 140203 Paragonimus kellicotti 100269 TAC|GTAAGTTAAA...GGCTTCTTAATT/GGCTTCTTAATT...TGTAG|GAC 0 1 26.549
145281422 GT-AG 0 1.000000099473604e-05 10153 rna-gnl|WGS:LOND|AHF37_00080 26253916 6 126310 136462 Paragonimus kellicotti 100269 CAA|GTAAGTATAA...GCACCGTTTACA/GCACCGTTTACA...TGCAG|TCG 2 1 29.72
145281423 GT-AG 0 0.398470863292127 56 rna-gnl|WGS:LOND|AHF37_00080 26253916 7 126157 126212 Paragonimus kellicotti 100269 TTC|GTATGCTTGA...ATCCCGTTCATT/AGGTGTCTGATG...ATCAG|TTG 0 1 33.296
145281424 GT-AG 0 1.000000099473604e-05 774 rna-gnl|WGS:LOND|AHF37_00080 26253916 8 125272 126045 Paragonimus kellicotti 100269 ATG|GTAGGTGTTC...ACTTTCTCATCA/TACTTTCTCATC...TGTAG|GGT 0 1 37.389
145281425 GT-AG 0 1.000000099473604e-05 146 rna-gnl|WGS:LOND|AHF37_00080 26253916 9 124913 125058 Paragonimus kellicotti 100269 GTG|GTGAGTGACT...TTTGTTTTATCA/GTTTATCTCATT...TGCAG|ATT 0 1 45.243
145281426 GT-AG 0 1.000000099473604e-05 11309 rna-gnl|WGS:LOND|AHF37_00080 26253916 10 113383 124691 Paragonimus kellicotti 100269 CGG|GTAGGTATGC...TTCTTTTTTTCT/CTTTGGTTGATT...CCAAG|TTA 2 1 53.392
145281427 GT-AG 0 1.000000099473604e-05 138 rna-gnl|WGS:LOND|AHF37_00080 26253916 11 113016 113153 Paragonimus kellicotti 100269 AAG|GTGAATTGCT...CCTGTTTTACTC/TCCTGTTTTACT...TTCAG|GTA 0 1 61.836
145281428 GT-AG 0 1.000000099473604e-05 4103 rna-gnl|WGS:LOND|AHF37_00080 26253916 12 108711 112813 Paragonimus kellicotti 100269 CGG|GTGAGTTACT...AGCTGTTTGATT/AGCTGTTTGATT...CACAG|TGT 1 1 69.285

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