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

✎ 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
88331387 GT-AG 0 1.000000099473604e-05 21418 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 1 526221 547638 Grallaria varia 117165 TCT|GTGAGTGGCC...CAATTCTAAATA/CCAATTCTAAAT...TACAG|GGA 1 1 12.859
88331388 GT-AG 0 0.0003072646685178 6968 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 2 519142 526109 Grallaria varia 117165 CAG|GTATGTGTAA...ATAGTTTTGATT/ATAGTTTTGATT...TTCAG|CTG 1 1 26.717
88331389 GT-AG 0 1.000000099473604e-05 4026 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 3 515063 519088 Grallaria varia 117165 CAG|GTGAGTACTT...ATGTCTTTACTT/GTAGTTTTCATG...TACAG|CTG 0 1 33.333
88331390 GT-AG 0 0.0002137531471128 2087 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 4 512923 515009 Grallaria varia 117165 CCT|GTAAGTATTT...CTCTCCTTTATG/TATGTATTAAGT...TCCAG|GTA 2 1 39.95
88331391 GT-AG 0 3.718361117179216e-05 1146 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 5 511695 512840 Grallaria varia 117165 ATA|GTAAGTAACT...TTTTTTTTAATC/TTTTTTTTAATC...TCCAG|GTT 0 1 50.187
88331392 GT-AG 0 1.000000099473604e-05 7830 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 6 503829 511658 Grallaria varia 117165 CAG|GTAAATCTTG...GGTCTCTTGAAT/TTTTTTTTTATT...TTCAG|GTC 0 1 54.682
88331393 GT-AG 0 1.000000099473604e-05 3299 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 7 500471 503769 Grallaria varia 117165 ATG|GTAAGTAACC...ACTGCCTTGAAA/TCTGAACTAATC...TCTAG|GGT 2 1 62.047
88331394 GT-AG 0 1.000000099473604e-05 2500 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 8 497869 500368 Grallaria varia 117165 AAG|GTGAGGATTT...GATTTCTTAGCT/AGATTTCTTAGC...TTCAG|AGC 2 1 74.782
88331395 GT-AG 0 1.000000099473604e-05 1672 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 9 496092 497763 Grallaria varia 117165 AAG|GTAGGAAATG...GTTGTTTTATAC/TGTTGTTTTATA...CACAG|TTT 2 1 87.89
88331396 GT-AG 0 1.000000099473604e-05 521 rna-gnl|WGS:VWZG|GRAVAR_R06436_mrna 16613808 10 495525 496045 Grallaria varia 117165 AAG|GTAAGCAAGC...CTCTTCCTATTT/CCTCTTCCTATT...AACAG|TTT 0 1 93.633

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