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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
126928193 GT-AG 0 1.000000099473604e-05 8610 rna-XM_006779757.1 23335551 2 5828915 5837524 Neolamprologus brichardi 32507 GAG|GTAAGTCTCC...GTCCTCTTAGAG/TATGTTGTAACT...TCCAG|GTA 0 1 17.171
126928194 GT-AG 0 0.0004073144321084 589 rna-XM_006779757.1 23335551 3 5828113 5828701 Neolamprologus brichardi 32507 GAG|GTATGCAGCC...AGCTCTTTTGTA/TGTAAATTGACC...CTCAG|GCC 0 1 23.434
126928195 GT-AG 0 1.5284824033470882e-05 265 rna-XM_006779757.1 23335551 4 5827707 5827971 Neolamprologus brichardi 32507 CAG|GTACAGTATG...TTCTTCTTCCCT/AAGTAACTGATC...TCCAG|GCT 0 1 27.58
126928196 GT-AG 0 1.3535493259779576e-05 371 rna-XM_006779757.1 23335551 5 5827240 5827610 Neolamprologus brichardi 32507 CAG|GTGTGTTCAC...AGTGTTTTAGCT/TGTGTGTTTATA...TATAG|GGT 0 1 30.403
126928197 GT-AG 0 0.0001081071337314 227 rna-XM_006779757.1 23335551 6 5826851 5827077 Neolamprologus brichardi 32507 ACG|GTATGATCCT...ATATTTGTGATA/ATATTTGTGATA...TTTAG|CAC 0 1 35.166
126928198 GT-AG 0 1.000000099473604e-05 3711 rna-XM_006779757.1 23335551 7 5822981 5826691 Neolamprologus brichardi 32507 CTG|GTGAGTATAG...ATTTCTGTGTCC/AGATGGCTAACA...GTCAG|GTG 0 1 39.841
126928199 GT-AG 0 1.000000099473604e-05 1594 rna-XM_006779757.1 23335551 8 5821289 5822882 Neolamprologus brichardi 32507 ATG|GTGAGTACAA...CCTGTTGTGAAT/CCTGTTGTGAAT...TTCAG|GTG 2 1 42.723
126928200 GT-AG 0 1.000000099473604e-05 84 rna-XM_006779757.1 23335551 9 5821079 5821162 Neolamprologus brichardi 32507 AAA|GTGAGTAGAT...CATGTTTTGACT/CATGTTTTGACT...AAAAG|AGA 2 1 46.428
126928201 GT-AG 0 1.000000099473604e-05 972 rna-XM_006779757.1 23335551 10 5818986 5819957 Neolamprologus brichardi 32507 CAG|GTGATGTTTA...TTGTGTTTATCC/GTTGTGTTTATC...CGCAG|TTG 1 1 79.388
126928202 GT-AG 0 1.000000099473604e-05 2212 rna-XM_006779757.1 23335551 11 5816608 5818819 Neolamprologus brichardi 32507 GGG|GTTGGTACCC...AACACCTTCTCT/TTTTTAGTAACT...CACAG|TGA 2 1 84.269
126928203 GT-AG 0 1.000000099473604e-05 703 rna-XM_006779757.1 23335551 12 5815767 5816469 Neolamprologus brichardi 32507 GCG|GTAAGTCTGA...ATACTCTTTGTG/AGTATGTTCAAT...CTCAG|GAA 2 1 88.327
126928204 GT-AG 0 1.000000099473604e-05 798 rna-XM_006779757.1 23335551 13 5814893 5815690 Neolamprologus brichardi 32507 CAG|GTAAAGTTTG...CTATTTTTGATT/CTATTTTTGATT...CACAG|GAC 0 1 90.562
126932377 GT-AG 0 2.0390911753645303e-05 12562 rna-XM_006779757.1 23335551 1 5838957 5851518 Neolamprologus brichardi 32507 CTG|GTAAGCGATG...TCCTCTTTGACA/ATGATGTTAACA...CTTAG|GAA   0 2.352

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