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

✎ 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
118584812 GT-AG 0 1.000000099473604e-05 100 rna-XM_016201061.1 21894389 3 12008449 12008548 Miniopterus natalensis 291302 CAG|GTAAGAAGAG...AATATTTTAAAT/AATATTTTAAAT...TTAAG|CTG 1 1 7.908
118584813 GT-AG 0 9.061861377314648e-05 357 rna-XM_016201061.1 21894389 4 12008624 12008980 Miniopterus natalensis 291302 CAG|GTTTGTTGAC...ACTTCCTTGATT/TTTCTTTTTACT...TATAG|GTG 1 1 11.046
118584814 GT-AG 0 1.000000099473604e-05 650 rna-XM_016201061.1 21894389 5 12009089 12009738 Miniopterus natalensis 291302 AAG|GTAAGACTTT...GAGTTCTTAGAG/ATGTTTTTCATC...CCTAG|GAA 1 1 15.565
118584815 GT-AG 0 1.000000099473604e-05 2347 rna-XM_016201061.1 21894389 6 12009784 12012130 Miniopterus natalensis 291302 AAG|GTAAAAATGT...ATGCCTATAACT/CTATAACTGAAA...TATAG|ATG 1 1 17.448
118584816 GT-AG 0 0.0001088526571709 5267 rna-XM_016201061.1 21894389 7 12012219 12017485 Miniopterus natalensis 291302 CAT|GTAAGTATTT...TTGTTTTTATTC/TTTGTTTTTATT...AAAAG|AAC 2 1 21.13
118584817 GT-AG 0 1.000000099473604e-05 91 rna-XM_016201061.1 21894389 8 12017516 12017606 Miniopterus natalensis 291302 TGG|GTAAAGATTA...AAGCTTTTATTT/TTTTATTTAATC...TTTAG|GCA 2 1 22.385
118584818 GT-AG 0 1.000000099473604e-05 11414 rna-XM_016201061.1 21894389 9 12017747 12029160 Miniopterus natalensis 291302 AAG|GTAAGAACAA...AATGTGTTGACC/AATGTGTTGACC...GAAAG|CTA 1 1 28.243
118584819 GT-AG 0 1.000000099473604e-05 994 rna-XM_016201061.1 21894389 10 12029372 12030365 Miniopterus natalensis 291302 AAG|GTCTTAATTT...AATAACTAAATG/TAATAACTAAAT...TTAAG|CCC 2 1 37.071
118584820 GT-AG 0 0.0001417909398729 1267 rna-XM_016201061.1 21894389 11 12030534 12031800 Miniopterus natalensis 291302 GTG|GTATGTGCAT...TTATTTTTATAA/TTTATTTTTATA...TCTAG|TAA 2 1 44.1
118584821 GT-AG 0 1.000000099473604e-05 2450 rna-XM_016201061.1 21894389 12 12031889 12034338 Miniopterus natalensis 291302 AGG|GTAGGTGGTT...TATTTTTTATTT/TTATTTTTTATT...TTAAG|CGT 0 1 47.782
118584822 GT-AG 0 8.55067608440165e-05 193 rna-XM_016201061.1 21894389 13 12034476 12034668 Miniopterus natalensis 291302 TAA|GTAAGATTTA...CTTTTCTTAATA/TTTTTTCTTATT...TTTAG|GAG 2 1 53.515
118585738 GT-AG 0 1.000000099473604e-05 7406 rna-XM_016201061.1 21894389 1 12000446 12007851 Miniopterus natalensis 291302 CAG|GTGAGTGGCG...TTCTTTTTAAAA/CTCCTTTTCATT...TCCAG|GGC   0 3.347
118585739 GT-AG 0 1.000000099473604e-05 471 rna-XM_016201061.1 21894389 2 12007900 12008370 Miniopterus natalensis 291302 CAG|GTAATTTGCC...TTTGCCTGAAAA/CTGTATTTTACT...CATAG|ATT   0 5.356

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