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)

11 rows where transcript_id = 410623

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
2418716 GT-AG 0 1.000000099473604e-05 4919 rna-XM_015896540.1 410623 1 1409832 1414750 Acropora digitifera 70779 CAG|GTGAGAAAAA...TGAGCCTTAACT/ATACTTTTAATA...TCTAG|CGG 1 1 4.612
2418717 GT-AG 0 1.000000099473604e-05 405 rna-XM_015896540.1 410623 2 1409289 1409693 Acropora digitifera 70779 ATG|GTAAGGAAAA...CATGTCTAAGTT/CTAAGTTTAATA...TTCAG|GTC 1 1 11.175
2418718 GT-AG 0 1.000000099473604e-05 451 rna-XM_015896540.1 410623 3 1408590 1409040 Acropora digitifera 70779 TAT|GTAAGTCCCA...CTTTTTTTGTTG/TTTCACGTCATG...CATAG|ATC 0 1 22.967
2418719 GT-AG 0 1.000000099473604e-05 364 rna-XM_015896540.1 410623 4 1408096 1408459 Acropora digitifera 70779 CAG|GTAAGGAATT...GCTAACATGATA/AATGGGCTAACA...TCCAG|GCA 1 1 29.149
2418720 GT-AG 0 2.3200788155494734e-05 130 rna-XM_015896540.1 410623 5 1407819 1407948 Acropora digitifera 70779 TTG|GTATGAACAC...GACTTCTTACTG/CGACTTCTTACT...TTTAG|GCG 1 1 36.139
2418721 AC-AG 0 1.000000099473604e-05 2013 rna-XM_015896540.1 410623 6 1405542 1407554 Acropora digitifera 70779 GTA|ACTGATTAAC...ATTTATTTATTT/TATTTATTTATT...TTCAG|GTG 1 1 48.692
2418722 GT-AG 0 1.1676634701446192e-05 356 rna-XM_015896540.1 410623 7 1405057 1405412 Acropora digitifera 70779 ATG|GTACGGATTT...AAGTTTTTACTG/TTTTTACTGATC...CTTAG|ATT 1 1 54.826
2418723 GT-AG 0 1.000000099473604e-05 536 rna-XM_015896540.1 410623 8 1404273 1404808 Acropora digitifera 70779 ACG|GTAAGCCAAG...TTCTCTATAGTG/AGTTATTTGAAA...GAAAG|GTA 0 1 66.619
2418724 GT-AG 0 1.000000099473604e-05 443 rna-XM_015896540.1 410623 9 1403685 1404127 Acropora digitifera 70779 AGG|GTAAGTGCCA...CTTCTTTTAAAA/TAGAGTTTGATT...TACAG|GAA 1 1 73.514
2418725 GT-AG 0 0.0010864531211332 1693 rna-XM_015896540.1 410623 10 1401857 1403549 Acropora digitifera 70779 AAG|GTGACCTTTT...ATGTATTTGACT/ATGTATTTGACT...TTCAG|GTA 1 1 79.933
2418726 GT-AG 0 1.000000099473604e-05 794 rna-XM_015896540.1 410623 11 1400749 1401542 Acropora digitifera 70779 TGG|GTGAGTTAAT...TGACTCGTGATG/ATAAGAATGACT...TTTAG|ATT 0 1 94.864

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