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

✎ 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
88330543 GT-AG 0 1.000000099473604e-05 571 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 1 425664 426234 Grallaria varia 117165 AAG|GTAAGAACCT...ATATTCATAACC/CATATATTCATA...CTTAG|CTG 2 1 5.838
88330544 GT-AG 0 1.000000099473604e-05 563 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 2 425005 425567 Grallaria varia 117165 CAT|GTAAGAAATC...ATAATATTAGCC/AGCTGTTTTATG...TGTAG|GAG 2 1 12.356
88330545 GT-AG 0 1.2041131776044446e-05 932 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 3 423972 424903 Grallaria varia 117165 ACT|GTGAGCTTGT...TATGTGATATCT/AAATATGTGATA...TGCAG|CTA 1 1 19.212
88330546 GT-AG 0 0.0022832463365357 843 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 4 423037 423879 Grallaria varia 117165 ATG|GTATATTCAC...AATATCTTGTTT/CTAATATTCATA...TGTAG|AAA 0 1 25.458
88330547 GT-AG 0 2.089833719832041e-05 460 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 5 422454 422913 Grallaria varia 117165 AGG|GTATGAAATT...AAGACATTAATT/TGCTTTTTCATT...TTCAG|CTA 0 1 33.809
88330548 GT-AG 0 1.8679842587118446e-05 1904 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 6 420389 422292 Grallaria varia 117165 GAA|GTAAGTAATC...AAAATTTTGACA/AAAATTTTGACA...CCCAG|TGT 2 1 44.739
88330549 GT-AG 0 5.871563635567047e-05 642 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 7 419588 420229 Grallaria varia 117165 CAG|GTAGGTTGGA...GCTGTCTTAATT/GCTGTCTTAATT...CCTAG|AAA 2 1 55.533
88330550 GT-AG 0 0.0011301271004461 402 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 8 418923 419324 Grallaria varia 117165 AAA|GTAGGTTTTG...TTTTCCTTTCCT/GTGTTTCTGATG...TGAAG|AAA 1 1 73.388
88330551 GT-AG 0 1.0143055680560747e-05 187 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 9 418626 418812 Grallaria varia 117165 GAG|GTAACAGATT...GATTTCATAATC/AGTGTTTTCATA...TTTAG|GTT 0 1 80.855
88330552 GT-AG 0 0.0002354559066801 446 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 10 418080 418525 Grallaria varia 117165 TTG|GTAAACTGAT...ATTTCTTTTACT/ATTTCTTTTACT...TACAG|TAA 1 1 87.644
88330553 GT-AG 0 1.000000099473604e-05 9106 rna-gnl|WGS:VWZG|GRAVAR_R01337_mrna 16613723 11 408889 417994 Grallaria varia 117165 GAG|GTAATGTGAC...TTTTCTTTGGTG/AAATGTTTCATG...CTCAG|GTT 2 1 93.415

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