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)

14 rows where transcript_id = 21575166

✎ 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
116649330 GT-AG 0 1.000000099473604e-05 3260 rna-XM_008935937.1 21575166 1 226788 230047 Merops nubicus 57421 GTG|GTAAGTGGCA...GGTCTTTTAAAA/AATTTGTTTACT...AGTAG|GTG 1 1 2.888
116649331 GT-AG 0 1.000000099473604e-05 217 rna-XM_008935937.1 21575166 2 230114 230330 Merops nubicus 57421 TGA|GTAAGAATGG...TACTTTTTAAAA/TTGTTGTTTACT...TTTAG|ACA 1 1 7.031
116649332 GT-AG 0 1.000000099473604e-05 252 rna-XM_008935937.1 21575166 3 230391 230642 Merops nubicus 57421 TTG|GTAAGTATGT...TGGCTCTTCTCT/ACCTGGCTCACC...TCCAG|ACT 1 1 10.797
116649333 GT-AG 0 9.68684987541407e-05 4537 rna-XM_008935937.1 21575166 4 230818 235354 Merops nubicus 57421 TGA|GTAAGTCTTA...CTGATTTTGAAC/CTTTGTGTTATT...TCAAG|CTG 2 1 21.783
116649334 GT-AG 0 1.000000099473604e-05 1264 rna-XM_008935937.1 21575166 5 235468 236731 Merops nubicus 57421 GTG|GTAAGATTAA...TGAATTTTAATG/TTTAATGTCATT...TCCAG|AGT 1 1 28.876
116649335 GT-AG 0 1.000000099473604e-05 2241 rna-XM_008935937.1 21575166 6 236861 239101 Merops nubicus 57421 CAG|GTAATAATAG...ATGTTTTTATTT/AATGTTTTTATT...TGCAG|AAT 1 1 36.974
116649336 GT-AG 0 0.0001076767535594 1877 rna-XM_008935937.1 21575166 7 239156 241032 Merops nubicus 57421 AAG|GTTTGCAATT...CCATACTTGACT/CCATACTTGACT...AACAG|AAG 1 1 40.364
116649337 GT-AG 0 1.000000099473604e-05 348 rna-XM_008935937.1 21575166 8 241036 241383 Merops nubicus 57421 AAG|GTGCTCGTGA...TATTTTTTGAGT/TATTTTTTGAGT...ACCAG|TGA 1 1 40.552
116649338 GT-AG 0 1.000000099473604e-05 305 rna-XM_008935937.1 21575166 9 241435 241739 Merops nubicus 57421 GAG|GTAAGAGTCT...TAGTTCACAATG/AGGTAGTTCACA...TACAG|TTA 1 1 43.754
116649339 GT-AG 0 1.000000099473604e-05 1879 rna-XM_008935937.1 21575166 10 241797 243675 Merops nubicus 57421 AAG|GTCAGTCACT...TTTACCTAAAAT/TGACTGTTTACC...TTCAG|AAG 1 1 47.332
116649340 GC-AG 0 1.000000099473604e-05 356 rna-XM_008935937.1 21575166 11 243826 244181 Merops nubicus 57421 AAG|GCAAGTAAAA...TTATTCTACATT/TAAGAGTTTATT...TCCAG|AGA 1 1 56.748
116649341 GT-AG 0 1.000000099473604e-05 1503 rna-XM_008935937.1 21575166 12 244281 245783 Merops nubicus 57421 AAG|GTAAATGAAG...TGTTTTTTGCTT/CCCCCATTCAGT...TATAG|TAT 1 1 62.963
116649342 GT-AG 0 1.000000099473604e-05 1588 rna-XM_008935937.1 21575166 13 245959 247546 Merops nubicus 57421 CAG|GTGGGGGCTG...TATTTTTTATTT/TTTTTATTTATA...TTTAG|GTG 2 1 73.949
116649343 GT-AG 0 0.0001151931605213 469 rna-XM_008935937.1 21575166 14 247654 248122 Merops nubicus 57421 AAT|GTAAGTTTGT...TAATTCTGAAAC/CACTGACTAATT...CTAAG|GTA 1 1 80.665

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