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)

12 rows where transcript_id = 9059385

✎ 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
48953459 GT-AG 0 1.000000099473604e-05 366 rna-XM_036569049.1 9059385 1 14142142 14142507 Colossoma macropomum 42526 CTG|GTGAGAAGTG...TTTTCCTGACCT/ATTTTCCTGACC...TACAG|ATT 1 1 0.536
48953460 GT-AG 0 1.000000099473604e-05 120 rna-XM_036569049.1 9059385 2 14141896 14142015 Colossoma macropomum 42526 CAG|GTTATAACAG...CTCTCCCTCTCT/CTGTCTCTCTCT...TCTAG|AGC 1 1 2.716
48953461 GT-AG 0 1.000000099473604e-05 115 rna-XM_036569049.1 9059385 3 14141688 14141802 Colossoma macropomum 42526 GAG|GTTAGACACA...TGTTATTTAATT/TGTTATTTAATT...TACAG|CCT 1 1 4.325
48953462 GT-AG 0 1.000000099473604e-05 108 rna-XM_036569049.1 9059385 4 14141517 14141624 Colossoma macropomum 42526 CTT|GTAAGTACCC...CTAGCTGTATAT/TAGCTGATGACT...CACAG|CAC 1 1 5.414
48953463 GT-AG 0 1.000000099473604e-05 80 rna-XM_036569049.1 9059385 5 14141278 14141357 Colossoma macropomum 42526 CAG|GTAACACTGT...ATACCTTTTGTA/TATAATCTGATA...TGCAG|TGG 1 1 8.165
48953464 GT-AG 0 1.000000099473604e-05 4610 rna-XM_036569049.1 9059385 6 14136518 14141127 Colossoma macropomum 42526 CTG|GTAAGATCCC...GATGCTTTTGTG/ACAAGATTAATT...GCCAG|ACA 1 1 10.759
48953465 GT-AG 0 1.000000099473604e-05 101 rna-XM_036569049.1 9059385 7 14136261 14136361 Colossoma macropomum 42526 CAG|GTGAGGGCTA...CTCTCCCTCTCT/ATGTGATTCAGT...CCTAG|AGA 1 1 13.458
48953466 GC-AG 0 1.000000099473604e-05 4565 rna-XM_036569049.1 9059385 8 14131540 14136104 Colossoma macropomum 42526 CAG|GCAAGCTTCA...AAAGCTTTGCTG/ATAGTAATAATG...TTTAG|ATA 1 1 16.156
48953467 GT-AG 0 1.000000099473604e-05 118 rna-XM_036569049.1 9059385 9 14131297 14131414 Colossoma macropomum 42526 ACT|GTGAGTTCCA...TTTGTTTTGTTT/TTTGTACTTATG...TATAG|GTT 0 1 18.319
48953468 GT-AG 0 1.000000099473604e-05 119 rna-XM_036569049.1 9059385 10 14130923 14131041 Colossoma macropomum 42526 CGG|GTCGGAAACT...TGTCTTATGAAA/ATGAAACTAATA...TGCAG|GGT 0 1 22.73
48953469 GT-AG 0 0.0002518000140583 86 rna-XM_036569049.1 9059385 11 14130620 14130705 Colossoma macropomum 42526 CAG|GTACACACCT...TTATTATTATTT/TTTATTATTATT...TTAAG|GCA 1 1 26.483
48953470 GT-AG 0 1.000000099473604e-05 1548 rna-XM_036569049.1 9059385 12 14128998 14130545 Colossoma macropomum 42526 AAG|GTAAGTCAAA...ACTTTCTTTATG/ACTTTCTTTATG...GCCAG|AAA 0 1 27.763

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