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

✎ 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
155531381 GT-AG 0 1.000000099473604e-05 82 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 1 1054344 1054425 Piromyces finnis 1754191 AAG|GTAAAATTAT...TCTTTTTTAAAA/TATGTACTTATT...TACAG|AGT 0 1 0.999
155531382 GT-AG 0 3.251840801589799e-05 87 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 2 1054586 1054672 Piromyces finnis 1754191 ATG|GTAAGTTTAT...TATTTATTAATT/TATTTATTAATT...TTTAG|TAT 1 1 6.327
155531383 GT-AG 0 0.0025626850120037 107 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 3 1054866 1054972 Piromyces finnis 1754191 AAA|GTATATATAT...TTATATTTATAA/ATTATATTTATA...AAAAG|AAA 2 1 12.754
155531384 GT-AG 0 1.000000099473604e-05 96 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 4 1055048 1055143 Piromyces finnis 1754191 AAA|GTAAGATATA...TTATTCTTTTTT/TTCTTTTTTATA...ATTAG|CTG 2 1 15.251
155531385 GT-AG 0 2.801581757651331e-05 86 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 5 1055287 1055372 Piromyces finnis 1754191 ATA|GTAATGATTC...ATTATTTTATTT/ATTTTATTTATA...ACAAG|GTT 1 1 20.013
155531386 GT-AG 0 0.0043939817110082 134 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 6 1055415 1055548 Piromyces finnis 1754191 TTG|GTAACTATTT...ATCCTATTATCA/CCTATTATCATC...TTAAG|ATA 1 1 21.412
155531387 GT-AG 0 0.0002512525196522 121 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 7 1055738 1055858 Piromyces finnis 1754191 TTC|GTAAATATCA...ATTTATTTATTT/TATTTATTTATT...ATTAG|AGA 1 1 27.706
155531388 GT-AG 0 0.0068536262666833 93 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 8 1055914 1056006 Piromyces finnis 1754191 AAG|GTATATAATA...TTTTTCTTAATT/TTTTTTTTAATT...AATAG|TAT 2 1 29.537
155531389 GT-AG 0 1.000000099473604e-05 118 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 9 1056249 1056366 Piromyces finnis 1754191 AAT|GTAAAAATAC...TCTTCCTTCATT/TTTTTATTAATA...AATAG|GTT 1 1 37.596
155531390 GT-AG 0 6.223626045401165e-05 67 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 10 1056440 1056506 Piromyces finnis 1754191 TAA|GTAATTTCAT...TATAATTTAATT/TATAATTTAATT...TAAAG|TAT 2 1 40.027
155531391 GT-AG 0 1.000000099473604e-05 153 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA3948 27988668 11 1056578 1056730 Piromyces finnis 1754191 ATG|GTAAGGAATA...TTATTATTAATT/TTATTATTAATT...TGTAG|TTA 1 1 42.391

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