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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
155530966 GT-AG 0 1.000000099473604e-05 110 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 2 1684998 1685107 Piromyces finnis 1754191 AAA|GTAAAAAAAA...ATCTTTTTATAA/TAAATATTTATT...TGAAG|AAT 0 1 7.888
155530967 GT-AG 0 0.0001538891407141 101 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 3 1684839 1684939 Piromyces finnis 1754191 ATT|GTAAATTTAT...AATATATAAACT/ATATATGTAAAT...GACAG|CTG 1 1 8.935
155530968 GT-AG 0 0.0003436908187147 93 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 4 1684614 1684706 Piromyces finnis 1754191 TTA|GTAAATATTA...TATTTATTAAAA/TAAATATTTATT...TTAAG|ATA 1 1 11.318
155530969 GT-AG 0 2.608947082908825e-05 153 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 5 1684230 1684382 Piromyces finnis 1754191 ATG|GTATAACAGA...AACAACTTAAAA/TTTAATATTATA...TAAAG|AAT 1 1 15.487
155530970 GT-AG 0 0.0039787378894423 90 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 6 1684079 1684168 Piromyces finnis 1754191 GAG|GTTTTTTTTT...TTTTTATTAATT/TTTTTATTAATT...AACAG|ATT 2 1 16.588
155530971 GT-AG 0 1.000000099473604e-05 112 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 7 1682157 1682268 Piromyces finnis 1754191 AAT|GTAATATATA...CTATTTATAATA/TAATAATTAACT...AATAG|AAA 0 1 49.26
155530972 GT-AG 0 1.000000099473604e-05 143 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 8 1681896 1682038 Piromyces finnis 1754191 AGG|GTAAAAATTA...AATGCCATAATG/ATAATAATAATG...TAAAG|AGA 1 1 51.39
155530973 GT-AG 0 5.765659190345672e-05 124 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 9 1681481 1681604 Piromyces finnis 1754191 ATA|GTAATATATA...TATTTTTTAAAT/TTAATATTTATT...TATAG|ATG 1 1 56.643
155530974 GT-AG 0 1.000000099473604e-05 70 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 10 1680117 1680186 Piromyces finnis 1754191 AAA|GTAATAATTA...TAAACTTTATAT/ATAATATTAATA...TGTAG|GGA 2 1 80.0
155530975 GT-AG 0 0.0002882208833228 100 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 11 1679759 1679858 Piromyces finnis 1754191 AAA|GTAATTTAAT...ATTTTTTTAATA/ATTTTTTTAATA...AATAG|TAA 2 1 84.657
155530976 GT-AG 0 3.049821683859485e-05 95 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 12 1679165 1679259 Piromyces finnis 1754191 TTA|GTAAGTTAAA...TAAATATTAATA/TAAATATTAATA...AATAG|AAG 0 1 93.664
155533069 GT-AG 0 0.0002008281197267 239 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341263 27988624 1 1685376 1685614 Piromyces finnis 1754191 AAG|GTTTGTATTT...TTGCTTTTAATT/TTGCTTTTAATT...TAAAG|ATT   0 3.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.811ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)