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

✎ 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
155531186 GT-AG 0 0.0097789559972798 90 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 1 1471012 1471101 Piromyces finnis 1754191 GAG|GTATATATTA...TATATTTTAAAC/TTTAAACTTATT...TAAAG|AGA 0 1 2.089
155531187 GT-AG 0 1.000000099473604e-05 96 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 2 1470049 1470144 Piromyces finnis 1754191 AAA|GTAAATAAAT...AATGTTTTAGTA/ATAAATTTCATT...AATAG|TAT 0 1 28.338
155531188 GT-AG 0 0.0102733996396043 210 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 3 1469605 1469814 Piromyces finnis 1754191 GAA|GTATAGTTTG...TTATTATTATTA/ATTATTATTATT...TATAG|TAT 0 1 35.422
155531189 GT-AG 0 1.000000099473604e-05 114 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 4 1469274 1469387 Piromyces finnis 1754191 AAG|GTTATTATTT...TATATTTTATAT/ATTATACTTATA...TAAAG|AAA 1 1 41.992
155531190 GT-AG 0 0.0005539126214368 92 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 5 1468899 1468990 Piromyces finnis 1754191 AGA|GTAATTTTAA...ATATTATTAATC/AAAATTCTAATT...AATAG|CAT 2 1 50.56
155531191 GT-AG 0 0.000100010918126 95 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 6 1468758 1468852 Piromyces finnis 1754191 AAG|GTTTTATTAA...TTGTTTTTAAAT/AATTGTTTAATT...TTTAG|ACT 0 1 51.953
155531192 GT-AG 0 0.0008163265467762 105 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 7 1468605 1468709 Piromyces finnis 1754191 AAA|GTATTATTAA...CTAATTATAATA/TAAAAACTAATT...TAAAG|GAC 0 1 53.406
155531193 GT-AG 0 0.0001457588663346 124 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 8 1468390 1468513 Piromyces finnis 1754191 AAG|GTATAATATT...ATTTATTTATTT/TATTTATTTATT...TATAG|AAA 1 1 56.161
155531194 GT-AG 0 1.0109830305536498 97 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 9 1468107 1468203 Piromyces finnis 1754191 AGG|GTATTCTTAT...ATTTTCTTATAT/AATTTTCTTATA...AATAG|TTC 1 1 61.792
155531195 GT-AG 0 0.0327943653980705 93 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 10 1467877 1467969 Piromyces finnis 1754191 ATT|GTATGTATCA...AATTCATTAATA/ATTATATTAACA...TGTAG|AAT 0 1 65.94
155531196 GT-AG 0 0.1072764520989083 115 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341184 27988649 11 1467671 1467785 Piromyces finnis 1754191 TTG|GTATTTTATA...AAATTTTTATCA/TAAATTTTTATC...ATCAG|ATA 1 1 68.695

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