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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
126230621 GT-AG 0 0.0001044118465957 190 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 1 996771 996960 Neocallimastix californiae 1754190 GAA|GTAAATATAT...AATTTTTTGATT/AATTTTTTGATT...TATAG|TGT 0 1 8.687
126230622 GT-AG 0 1.000000099473604e-05 119 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 2 996544 996662 Neocallimastix californiae 1754190 ATT|GTAAGTAAAT...TATATGTTATTA/TATGTTATTACT...TTAAG|AAT 0 1 12.749
126230623 GT-AG 0 0.0002425816511538 166 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 3 996315 996480 Neocallimastix californiae 1754190 ATA|GTAGATGTAC...ATTCTTTTAATC/GTTTTATTTATA...TTTAG|AAA 0 1 15.118
126230624 GT-AG 0 0.0004484501029373 136 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 4 995670 995805 Neocallimastix californiae 1754190 TTT|GTATGAATAA...TATATTATGATC/ATAATATTTATA...AATAG|AAA 2 1 34.261
126230625 GT-AG 0 1.000000099473604e-05 140 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 5 995248 995387 Neocallimastix californiae 1754190 ATG|GTAAATATAT...ATATTTTTATAT/ATTATATTCACA...TTCAG|GTT 2 1 44.866
126230626 GT-AG 0 1.8971499071712927 209 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 6 994953 995161 Neocallimastix californiae 1754190 AAG|GTATACTTTT...ATTCTTTTGATT/ATTCTTTTGATT...TTCAG|ATA 1 1 48.101
126230627 GT-AG 0 0.0002010370949265 146 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 7 994223 994368 Neocallimastix californiae 1754190 AGT|GTAGATCCTT...TATATTATAATA/AATATAATTATT...AAAAG|ATG 0 1 70.064
126230628 GT-AG 0 0.0033952965795253 163 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 8 993862 994024 Neocallimastix californiae 1754190 TGG|GTATATATAA...TTATTATTGATT/TTATTATTGATT...TAAAG|TGG 0 1 77.51
126230629 GT-AG 0 0.0008654795541418 107 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 9 993699 993805 Neocallimastix californiae 1754190 TCA|GTAAATGTTA...CGGCTTTTGATT/CGGCTTTTGATT...TCAAG|ATA 2 1 79.616
126230630 GT-AG 0 1.000000099473604e-05 179 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 10 993465 993643 Neocallimastix californiae 1754190 GAG|GTAAATATAT...ATATATTTAAAA/TATATATTTAAA...AATAG|TTT 0 1 81.685
126231159 TA-TA 0 1.000000099473604e-05 70 rna-gnl|WGS:MCOG|LY90DRAFT_mRNA696681 23199981 11 992935 993004 Neocallimastix californiae 1754190 GAT|TAAGAAAATA...ATAAGATTAAGA/ATAAGATTAAGA...AAATA|AAA   0 98.985

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