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)

13 rows where transcript_id = 28258289

✎ 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
156963612 GT-AG 0 1.000000099473604e-05 106 rna-XM_027185812.1 28258289 1 527718 527823 Pocillopora damicornis 46731 CCG|GTAAGTCACC...TTATGGTTAGTT/ATAAGGCTTATG...TGTAG|ATG 0 1 5.957
156963613 GT-AG 0 1.000000099473604e-05 930 rna-XM_027185812.1 28258289 2 526693 527622 Pocillopora damicornis 46731 CTG|GTACGAGTTG...TGTTATTTAAAT/CAGTATTTCACT...TTCAG|CCT 2 1 12.695
156963614 GT-AG 0 1.000000099473604e-05 765 rna-XM_027185812.1 28258289 3 525856 526620 Pocillopora damicornis 46731 AAG|GTGAGTAATA...TAATTCTGAAAA/GTAATTCTGAAA...CTCAG|GGC 2 1 17.801
156963615 GT-AG 0 0.0853404424727728 135 rna-XM_027185812.1 28258289 4 525611 525745 Pocillopora damicornis 46731 ATT|GTATGTTAAA...TTTACCTTATAT/AATTTATTAATT...TTCAG|CCA 1 1 25.603
156963616 GT-AG 0 1.000000099473604e-05 800 rna-XM_027185812.1 28258289 5 524725 525524 Pocillopora damicornis 46731 AAG|GTAGATATGA...TATCACATAGTT/TGATATATCACA...GTTAG|TTT 0 1 31.702
156963617 GT-AG 0 1.000000099473604e-05 480 rna-XM_027185812.1 28258289 6 524160 524639 Pocillopora damicornis 46731 TAG|GTGAGTCATT...GTTTCTGTAACA/TTTGGTTTGAGT...CTCAG|ACA 1 1 37.73
156963618 GT-AG 0 1.000000099473604e-05 888 rna-XM_027185812.1 28258289 7 523097 523984 Pocillopora damicornis 46731 AGG|GTGAGTGAAC...TTATTATTAACC/TTATTATTAACC...TGCAG|AAA 2 1 50.142
156963619 GT-AG 0 0.0005175928681601 220 rna-XM_027185812.1 28258289 8 522824 523043 Pocillopora damicornis 46731 CAG|GTTTGTTTTT...ATTATTTTATTT/TATTATTTTATT...AAAAG|GAT 1 1 53.901
156963620 GT-AG 0 1.4392514508842985e-05 259 rna-XM_027185812.1 28258289 9 522520 522778 Pocillopora damicornis 46731 TTG|GTAAGATGCA...TGTTTCTTAATT/TGTTTCTTAATT...TTCAG|ATG 1 1 57.092
156963621 GT-AG 0 1.000000099473604e-05 343 rna-XM_027185812.1 28258289 10 522058 522400 Pocillopora damicornis 46731 AAG|GTAATTACTG...ACCCTCTTAATT/CCTTTTTTGACC...TATAG|GTC 0 1 65.532
156963622 GT-AG 0 0.3151843488964833 525 rna-XM_027185812.1 28258289 11 521410 521934 Pocillopora damicornis 46731 CAG|GTATTCTTTT...TTGTTTTTACAA/GTTGTTTTTACA...ATCAG|CAG 0 1 74.255
156963623 GT-AG 0 0.0018382395151851 375 rna-XM_027185812.1 28258289 12 520981 521355 Pocillopora damicornis 46731 CAA|GTATGTTGAA...AATGCCATATTT/TTTGGTGTTACA...TGCAG|GAC 0 1 78.085
156963624 GT-AG 0 1.000000099473604e-05 522 rna-XM_027185812.1 28258289 13 520236 520757 Pocillopora damicornis 46731 CAG|GTTAGTGTGA...GCTCTCTTGACA/GTTTTACTAAAC...CTTAG|AAC 1 1 93.901

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