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

✎ 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
2419080 GT-AG 0 3.0215791050896257e-05 834 rna-XM_015901457.1 410657 1 237369 238202 Acropora digitifera 70779 CAT|GTAAATAAAG...ACGATCTTAATG/ACCGCTCTAACC...CTTAG|ATT 0 1 8.389
2419081 GT-AG 0 1.000000099473604e-05 83 rna-XM_015901457.1 410657 2 237106 237188 Acropora digitifera 70779 AAG|GTTTGATTAA...CTTTGTTTGATG/CTTTGTTTGATG...CACAG|GAA 0 1 21.634
2419082 GT-AG 0 1.000000099473604e-05 251 rna-XM_015901457.1 410657 3 236735 236985 Acropora digitifera 70779 GAG|GTAAGAACTA...ATTCCATTTACT/CATTTACTCACA...TTTAG|CTT 0 1 30.464
2419083 GT-AG 0 1.379539996036598e-05 187 rna-XM_015901457.1 410657 4 236438 236624 Acropora digitifera 70779 CAG|GTACGTGAAG...ATCTTCTTATTT/AATCTTCTTATT...GCCAG|AAA 2 1 38.558
2419084 GT-AG 0 0.0007811193600405 89 rna-XM_015901457.1 410657 5 236279 236367 Acropora digitifera 70779 CTG|GTATTTACAA...TCTATCTTGCCT/TTTTTGTCTATC...TCTAG|CTA 0 1 43.709
2419085 GT-AG 0 0.0016421545545654 157 rna-XM_015901457.1 410657 6 236023 236179 Acropora digitifera 70779 CAG|GTACTCATCT...GTTTCTTTTTTT/AGTCAGCTAAAG...AACAG|CAA 0 1 50.993
2419086 GT-AG 0 1.000000099473604e-05 266 rna-XM_015901457.1 410657 7 235694 235959 Acropora digitifera 70779 AAG|GTCGGATATA...AGATTCCTATCT/CTTTCTCTCACT...TTTAG|GAG 0 1 55.629
2419087 GT-AG 0 1.000000099473604e-05 514 rna-XM_015901457.1 410657 8 235154 235667 Acropora digitifera 70779 GAG|GTACGAAAAC...GTACTTTTACTT/TTGGTCTTCATT...AACAG|GCA 2 1 57.542
2419088 GT-AG 0 0.0008709784221017 79 rna-XM_015901457.1 410657 9 235020 235098 Acropora digitifera 70779 ATG|GTAGACATTC...AAGGTCTTAGTG/TAGAATTTTACA...TTTAG|GCT 0 1 61.589
2419089 GT-AG 0 0.0001606280678422 212 rna-XM_015901457.1 410657 10 234739 234950 Acropora digitifera 70779 GTG|GTAAGCTGTG...TTTTTTTTCACT/TTTTTTTTCACT...TCCAG|ACC 0 1 66.667
2419090 GT-AG 0 1.000000099473604e-05 223 rna-XM_015901457.1 410657 11 234276 234498 Acropora digitifera 70779 TCG|GTAGGAACAG...CCTCTCTTGAAT/TCTTGAATTACT...ACTAG|CTT 0 1 84.327
2419091 GT-AG 0 7.933305006106544e-05 108 rna-XM_015901457.1 410657 12 234117 234224 Acropora digitifera 70779 AAG|GTACGCCGGA...CGCCCCTTTTCA/GCGAAACTAACA...ACCAG|ATG 0 1 88.079
2419092 GT-AG 0 1.000000099473604e-05 436 rna-XM_015901457.1 410657 13 233585 234020 Acropora digitifera 70779 AAG|GTAATGTGGA...CGTTCCTTTTTA/TTCCTTTTTATT...TGCAG|GAG 0 1 95.143

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