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

✎ 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
156964157 GT-AG 0 2.56468661026043e-05 90 rna-XM_027189174.1 28258364 1 411395 411484 Pocillopora damicornis 46731 ATG|GTAAGTTCGA...CTTTTTTTGACC/CTTTTTTTGACC...TCTAG|GCT 1 1 11.964
156964158 GT-AG 0 0.000397282737879 509 rna-XM_027189174.1 28258364 2 410813 411321 Pocillopora damicornis 46731 ACA|GTAAGTTTTT...TTTCTCTTTTCA/TTGTTACTGACT...TCCAG|GGC 2 1 17.987
156964159 GT-AG 0 1.000000099473604e-05 699 rna-XM_027189174.1 28258364 3 410047 410745 Pocillopora damicornis 46731 CAG|GTTTGTAAAT...TTTGCTTTTGTT/AGTTTACTAAAT...TACAG|ACA 0 1 23.515
156964160 GT-AG 0 1.000000099473604e-05 650 rna-XM_027189174.1 28258364 4 409334 409983 Pocillopora damicornis 46731 AAG|GTAGATTAAT...GATTTCATGATA/ATGATACTTATT...ATCAG|GTC 0 1 28.713
156964161 GT-AG 0 1.000000099473604e-05 867 rna-XM_027189174.1 28258364 5 408334 409200 Pocillopora damicornis 46731 TTG|GTAAGTAATA...TACTCCTTTGTT/TTGTAATTTACT...ATAAG|ACA 1 1 39.686
156964162 GT-AG 0 1.000000099473604e-05 105 rna-XM_027189174.1 28258364 6 408148 408252 Pocillopora damicornis 46731 AAG|GTAAGGAACT...ACTGTTTTATTA/TTATTATTTATT...TTTAG|GTT 1 1 46.37
156964163 GT-AG 0 9.43733116771231e-05 446 rna-XM_027189174.1 28258364 7 407649 408094 Pocillopora damicornis 46731 CAG|GTAAGTTTTG...CAATTCTTATCA/ACAATTCTTATC...TTCAG|GTT 0 1 50.743
156964164 GT-AG 0 1.000000099473604e-05 116 rna-XM_027189174.1 28258364 8 407444 407559 Pocillopora damicornis 46731 GCG|GTGAGTGACA...TTTTCCATAGTG/TCCATAGTGATG...CATAG|TGA 2 1 58.086
156964165 GT-AG 0 1.000000099473604e-05 112 rna-XM_027189174.1 28258364 9 407193 407304 Pocillopora damicornis 46731 AAG|GTTAGTTCAC...ATTTTCTTTCCT/GTTATATTTATT...ATCAG|GTG 0 1 69.554
156964166 GT-AG 0 1.000000099473604e-05 98 rna-XM_027189174.1 28258364 10 406979 407076 Pocillopora damicornis 46731 GAG|GTAAAGAGAA...AAGTGCTTGACT/TCTTTGCTTATT...TGCAG|TCG 2 1 79.125
156964167 GT-AG 0 1.000000099473604e-05 273 rna-XM_027189174.1 28258364 11 406598 406870 Pocillopora damicornis 46731 CAG|GTAAGCGATG...CAGACTTTCACT/CAGACTTTCACT...TTCAG|GAT 2 1 88.036
156964168 GT-AG 0 2.4749530088968627e-05 507 rna-XM_027189174.1 28258364 12 405963 406469 Pocillopora damicornis 46731 ATG|GTAGGTCTTT...TATTCCTTTTCA/TTCCTTTTCACA...TTCAG|TGG 1 1 98.597

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