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)

12 rows where transcript_id = 37556822

✎ 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
207135075 GT-AG 0 1.000000099473604e-05 45310 rna-XM_026392396.1 37556822 1 8325958 8371267 Urocitellus parryii 9999 ACG|GTAAGGGGGA...ATATACTTATTT/TATATACTTATT...CTCAG|GTC 0 1 1.322
207135076 GT-AG 0 1.000000099473604e-05 8308 rna-XM_026392396.1 37556822 2 8371351 8379658 Urocitellus parryii 9999 CAG|GTGAGTTATT...ACTTCTTTGAAG/TTTGAAGTGATC...AAAAG|AAG 2 1 3.248
207135077 GT-AG 0 1.000000099473604e-05 19464 rna-XM_026392396.1 37556822 3 8379662 8399125 Urocitellus parryii 9999 AAG|GTTATGTGTG...ATCTTTTTGTTT/ACTGTGTTCATC...TGCAG|TGG 2 1 3.317
207135078 GT-AG 0 1.000000099473604e-05 5178 rna-XM_026392396.1 37556822 4 8399235 8404412 Urocitellus parryii 9999 AAG|GTAAATATTT...TTAATCCTAATT/TTAATCCTAATT...TTCAG|AAA 0 1 5.846
207135079 GT-AG 0 1.000000099473604e-05 22113 rna-XM_026392396.1 37556822 5 8404564 8426676 Urocitellus parryii 9999 AAG|GTAAATCTAC...AAATTTTTCATT/AAATTTTTCATT...CTCAG|TAT 1 1 9.348
207135080 GT-AG 0 1.1629600280783922e-05 4119 rna-XM_026392396.1 37556822 6 8426793 8430911 Urocitellus parryii 9999 CAG|GTAAGCATTG...TTTTTATTATTA/TTTATTATTACT...TGTAG|GCT 0 1 12.039
207135081 GT-AG 0 2.904332438734742e-05 816 rna-XM_026392396.1 37556822 7 8431036 8431851 Urocitellus parryii 9999 CTG|GTAGGTAGTT...TCTTTCTTATTT/GTCTTTCTTATT...CCTAG|CAA 1 1 14.915
207135082 GT-AG 0 1.000000099473604e-05 20750 rna-XM_026392396.1 37556822 8 8431996 8452745 Urocitellus parryii 9999 CAA|GTAAGTTAGT...TTTTTTTTCCCT/TTTGAAATGATT...TTTAG|GGC 1 1 18.256
207135083 GT-AG 0 1.000000099473604e-05 6907 rna-XM_026392396.1 37556822 9 8452910 8459816 Urocitellus parryii 9999 CAG|GTGCGTCATT...TTTCCCTTTCTT/CCCTGGCTTATT...ACCAG|GTT 0 1 22.06
207135084 GT-AG 0 1.000000099473604e-05 2533 rna-XM_026392396.1 37556822 10 8459914 8462446 Urocitellus parryii 9999 AAG|GTAAGTGTTC...TTTTTTTTGTTA/TTTCTATTCAGT...TACAG|GTG 1 1 24.31
207135085 GT-AG 0 1.000000099473604e-05 2368 rna-XM_026392396.1 37556822 11 8462553 8464920 Urocitellus parryii 9999 GAG|GTAATAATTA...ATTTTCTTATTT/TATTTTCTTATT...TTTAG|TTC 2 1 26.769
207135086 GT-AG 0 1.000000099473604e-05 954 rna-XM_026392396.1 37556822 12 8465633 8466586 Urocitellus parryii 9999 AAG|GTAGGAGAAC...CCTCCCCTATTT/TGAAAACTAAGC...TTCAG|ATC 0 1 43.285

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