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

✎ 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
155531670 GT-AG 0 0.2588928296290336 119 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 1 1009890 1010008 Piromyces finnis 1754191 ATG|GTATACTTGA...ATTTATTTAAAA/TTTGAATTTATT...AAAAG|TTC 1 1 7.746
155531671 GT-AG 0 1.000000099473604e-05 70 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 2 1009742 1009811 Piromyces finnis 1754191 CTA|GTAATAAAAT...ATAATTTAAATT/ATTTAAATTATT...AAAAG|TTA 1 1 11.14
155531672 GT-AG 0 1.0425064232899011e-05 83 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 3 1009564 1009646 Piromyces finnis 1754191 CAA|GTAAATGTCA...AGTTTATTACTA/ATATAATTAATT...AAAAG|CCT 0 1 15.274
155531673 GT-AG 0 0.0001765805416528 91 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 4 1009324 1009414 Piromyces finnis 1754191 CTC|GTAAAATATC...TCCTTTTTAAAT/TCCTTTTTAAAT...TAAAG|ATA 2 1 21.758
155531674 GT-AG 0 1.000000099473604e-05 79 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 5 1009181 1009259 Piromyces finnis 1754191 GAA|GTAATAAATA...GAAATATTAATA/ATATTATTCAAT...TAAAG|GAT 0 1 24.543
155531675 GT-AG 0 0.0032940868004481 116 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 6 1008687 1008802 Piromyces finnis 1754191 TCA|GTAAATATTG...AATTCTTTAACT/CTTTAATTTATT...CTTAG|GAC 0 1 40.992
155531676 GT-AG 0 0.0001220552309262 85 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 7 1008422 1008506 Piromyces finnis 1754191 CTT|GTAATTAATC...TTTTTGTTAATT/TTTTTGTTAATT...AAAAG|GAA 0 1 48.825
155531677 GT-AG 0 0.0013161268451048 81 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 8 1008033 1008113 Piromyces finnis 1754191 ACA|GTAAGTTTGA...TTCTTTTTAATA/TTCTTTTTAATA...ATTAG|GTC 2 1 62.228
155531678 GT-AG 0 0.9923961749133478 96 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 9 1007845 1007940 Piromyces finnis 1754191 AAG|GTATCTATTA...TAATTATTAATT/TAATTATTAATT...TAAAG|TTC 1 1 66.232
155531679 GT-AG 0 1.000000099473604e-05 101 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 10 1007546 1007646 Piromyces finnis 1754191 AAA|GTAAGAGAAA...TATTCATTATAA/TTTATATTCATT...TTAAG|CTT 1 1 74.848
155531680 GT-AG 0 0.000106349690946 81 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 11 1007348 1007428 Piromyces finnis 1754191 AAG|GTATTAATGA...TAATCATTAATA/TTTCGATTTATT...ATCAG|GTG 1 1 79.939
155531681 GT-AG 0 1.000000099473604e-05 99 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA340947 27988705 12 1007174 1007272 Piromyces finnis 1754191 CTT|GTTAGTATAA...AAGTTTTTATTT/ATTATATTTATC...ATTAG|ATA 1 1 83.203

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