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)

9 rows where transcript_id = 23200031

✎ 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
126230934 GT-AG 0 1.000000099473604e-05 225 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 1 1153900 1154124 Neocallimastix californiae 1754190 AGA|GTTAGTACTT...TTATTTTTAATT/TTGTTTCTTATT...TATAG|TAA 2 1 9.431
126230935 GT-AG 0 1.000000099473604e-05 188 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 2 1154225 1154412 Neocallimastix californiae 1754190 GAG|GTCAGTAAAT...TTATTATTAATT/TTATTATTAATT...AATAG|TTT 0 1 17.561
126230936 GT-AG 0 1.000000099473604e-05 32 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 3 1154477 1154508 Neocallimastix californiae 1754190 ATG|GTGTTGTTGT...TGGAATTTACAT/TTGGAATTTACA...ACAAG|GAC 1 1 22.764
126230937 GT-AG 0 0.1284199202214024 390 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 4 1154538 1154927 Neocallimastix californiae 1754190 CAA|GTATGTTATA...TTTTTTTTAATT/TTTTTTTTAATT...TATAG|TCA 0 1 25.122
126230938 GT-AG 0 8.873888130713219e-05 529 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 5 1155186 1155714 Neocallimastix californiae 1754190 CAA|GTAAATATAC...TTTTTTTTAATC/TTTTTTTTAATC...ATTAG|GAA 0 1 46.098
126230939 GT-AG 0 0.0007104462136967 354 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 6 1155867 1156220 Neocallimastix californiae 1754190 CAG|GTTTGTTTTA...TTATTTTTAAAT/TATTTATTTATT...TATAG|TAA 2 1 58.455
126230940 GT-AG 0 2.0226605973429247e-05 372 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 7 1156375 1156746 Neocallimastix californiae 1754190 AAG|GTAGTATTTA...TACTTTTTATAT/ATTATTATTATT...CTTAG|TCT 0 1 70.976
126230941 GT-AG 0 1.000000099473604e-05 289 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 8 1156918 1157206 Neocallimastix californiae 1754190 GAG|GTAATTACAA...TAATGATAAAAA/TAAAAAATAAAA...ATTAG|ATG 0 1 84.878
126230942 GT-AG 0 7.832358949762732e-05 377 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA522028 23200031 9 1157333 1157709 Neocallimastix californiae 1754190 GAT|GTAAAGTATC...TTTGTTTTAATA/TATTTATTTATT...TTTAG|CTT 0 1 95.122

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