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

✎ 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
155531152 GT-AG 0 0.0002551095656362 132 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 1 2155286 2155417 Piromyces finnis 1754191 AAG|GTATATAAAT...TTTCATTTAATA/ATTAATTTCATT...TTTAG|ATA 2 1 5.103
155531153 GT-AG 0 1.509920686650224e-05 108 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 2 2155513 2155620 Piromyces finnis 1754191 TTG|GTAAAATAAT...TTTTTTTTAATA/ATTTTTTTTATT...AATAG|ATA 1 1 7.906
155531154 GT-AG 0 1.000000099473604e-05 82 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 3 2155638 2155719 Piromyces finnis 1754191 GCT|GTAAGAATAT...ATTTCATTAAAT/CATGATTTCATT...CTTAG|GCA 0 1 8.407
155531155 GT-AG 0 0.0053200799128237 100 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 4 2155767 2155866 Piromyces finnis 1754191 AAT|GTATATAATA...TATTTATTATTT/CTATTATTTATT...TATAG|GTT 2 1 9.794
155531156 GT-AG 0 1.000000099473604e-05 98 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 5 2155915 2156012 Piromyces finnis 1754191 TAG|GTAATAAAGC...TATATGTTAATT/TATATGTTAATT...AACAG|TGG 2 1 11.209
155531157 GT-AG 0 0.0516617860660524 98 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 6 2156030 2156127 Piromyces finnis 1754191 CAG|GTATACATTT...TTTGTTTTATTT/ATTTGTTTTATT...AATAG|GAA 1 1 11.711
155531158 GT-AG 0 1.000000099473604e-05 232 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 7 2156156 2156387 Piromyces finnis 1754191 TAT|GTAAAATAGA...TTATCTATAAAT/ATTGAATTAATA...GATAG|AGG 2 1 12.537
155531159 GT-AG 0 0.000112959302955 143 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 8 2156440 2156582 Piromyces finnis 1754191 GGT|GTAAGCAATC...TTAAATTTAATA/TTAAATTTAATA...TAAAG|TCT 0 1 14.071
155531160 GT-AG 0 1.2122321817035372e-05 153 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 9 2156727 2156879 Piromyces finnis 1754191 AAG|GTAATTTAAA...ATATTTTTAAAT/ATATAATTTATT...AATAG|TCT 0 1 18.319
155531161 GT-AG 0 1.602765418586666e-05 134 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 10 2159505 2159638 Piromyces finnis 1754191 CAA|GTAATTAATC...TTTTTTTTATTC/TTTTTTTTTATT...TATAG|GCT 0 1 95.752
155531162 GT-AG 0 5.426929620969152e-05 119 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA439738 27988645 11 2159753 2159871 Piromyces finnis 1754191 TTA|GTAAGTAGTA...AAATTTTTAATA/ATATTACTAATT...CCTAG|TTC 0 1 99.115

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