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

✎ 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
155531039 GT-AG 0 1.000000099473604e-05 96 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 1 1821721 1821816 Piromyces finnis 1754191 AAG|GTAATAAATA...TTTGTTTTATAT/TTTTGTTTTATA...CTTAG|ATA 1 1 43.605
155531040 GT-AG 0 0.1822520703442278 213 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 2 1822045 1822257 Piromyces finnis 1754191 ATG|GTATGTTTTT...ATTTTTTTAATT/ATTTTTTTAATT...ATTAG|AAT 1 1 49.181
155531041 GT-AG 0 5.115672388129795e-05 97 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 3 1822768 1822864 Piromyces finnis 1754191 CAA|GTAAGTTTAT...ATATACTTAAAT/GATTAATTTATT...TATAG|TAC 1 1 61.653
155531042 GT-AG 0 1.000000099473604e-05 97 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 4 1822983 1823079 Piromyces finnis 1754191 AAG|GTAATAATTA...CTTTTCATAATA/ATTCTTTTCATA...TATAG|AGA 2 1 64.539
155531043 GT-AG 0 0.0013251352872512 121 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 5 1823459 1823579 Piromyces finnis 1754191 ATG|GTATTTAATT...ATTTTCCTATTA/TTCCTATTAAAT...AATAG|TCA 0 1 73.808
155531044 GT-AG 0 0.012006894017285 88 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 6 1823865 1823952 Piromyces finnis 1754191 GAT|GTAAACTTCC...AATATTTTAAAA/ATATATTTAAAT...TTTAG|GTT 0 1 80.778
155531045 GT-AG 0 0.0003808802471776 115 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 7 1824045 1824159 Piromyces finnis 1754191 TAA|GTAAGTTATC...ATTATCTTAATA/TATTTATTTATT...AAAAG|GGA 2 1 83.028
155531046 GT-AG 0 1.000000099473604e-05 76 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 8 1824284 1824359 Piromyces finnis 1754191 CAG|GTAAATATAA...TTTTTTTTATAT/TTTTTTTTTATA...AATAG|TTT 0 1 86.06
155531047 GT-AG 0 1.000000099473604e-05 101 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 9 1824406 1824506 Piromyces finnis 1754191 CAA|GTAAGTAGTT...TTTACTGTAACA/AAAATATTCATT...AATAG|TGG 1 1 87.185
155531048 GT-AG 0 1.000000099473604e-05 71 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 10 1824658 1824728 Piromyces finnis 1754191 ATG|GTAAATATAT...AATATCTAAAAT/AAATGATTTATA...AATAG|GTA 2 1 90.878
155531049 GT-AG 0 3.202481115589794e-05 91 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408082 27988634 11 1824878 1824968 Piromyces finnis 1754191 ATA|GTAAGTTGAT...TCTTTTTTATAA/CTCTTTTTTATA...AATAG|GGA 1 1 94.522

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