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)

10 rows where transcript_id = 23199997

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
126230732 GT-AG 0 1.000000099473604e-05 196 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 1 1091285 1091480 Neocallimastix californiae 1754190 AAG|GTTATTAATT...TAATATTTGAAT/ATTAAATTAATA...TATAG|GTT 1 1 23.573
126230733 GT-AG 0 0.0001022734734717 164 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 2 1091003 1091166 Neocallimastix californiae 1754190 ACG|GTACAATCAA...TATTTTTTATAA/TTATTTTTTATA...AAAAG|AGA 2 1 29.867
126230734 AT-AC 1 99.99999997280092 143 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 3 1090755 1090897 Neocallimastix californiae 1754190 TTG|ATATCCTTTT...TTGTCTTTAATG/ATATTTTTTATA...TATAC|GTC 2 1 35.467
126230735 AT-AC 1 99.99952591663944 170 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 4 1090504 1090673 Neocallimastix californiae 1754190 ATG|ATATCCTATA...TTTTTTTTTATT/TTTTTTTTTATT...TATAC|GTA 2 1 39.787
126230736 GT-AG 0 0.0466161345128334 97 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 5 1090261 1090357 Neocallimastix californiae 1754190 TTC|GTATGTTAAC...TTGTCTATAATA/AAATGATTTATT...AATAG|ATA 1 1 47.573
126230737 GT-AG 0 0.008813987017497 155 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 6 1090029 1090183 Neocallimastix californiae 1754190 GAA|GTATTTGTTT...TAAATATTAATA/TAAATATTAATA...ATAAG|GAA 0 1 51.68
126230738 GT-AG 0 1.000000099473604e-05 220 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 7 1089697 1089916 Neocallimastix californiae 1754190 AAG|GTAAAAAACT...ATATTTTTATAA/TATATTTTTATA...TATAG|TCG 1 1 57.653
126230739 GT-AG 0 22.177434483226467 109 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 8 1089560 1089668 Neocallimastix californiae 1754190 GCT|GTATTTTTCA...TTTTTTTTAATA/TTTTTTTTAATA...ATAAG|ATA 2 1 59.147
126230740 GT-AG 0 1.3929383999183911e-05 158 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 9 1089207 1089364 Neocallimastix californiae 1754190 TAA|GTAAATCACA...TATATATTAATA/TATATATTAATA...TTTAG|ATG 2 1 69.547
126230741 GT-AG 0 1.000000099473604e-05 122 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA663006 23199997 10 1088559 1088680 Neocallimastix californiae 1754190 GGG|GTAATTGATT...ATTTTTTTAAAA/ATTTTTTTAAAA...TATAG|GAT 0 1 97.6

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