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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
130192738 GT-AG 0 1.000000099473604e-05 15744 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 1 9926585 9942328 Nothocercus julius 2585813 GAG|GTAAGATGTG...TGGCCTTTGATT/ATGCTCCTGACT...TTTAG|GAG 2 1 32.025
130192739 GT-AG 0 1.000000099473604e-05 5831 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 2 9942416 9948246 Nothocercus julius 2585813 CAG|GTAAGAACAA...CTATCTTTCTCC/CTGGCTGTCATT...CTCAG|GTT 2 1 35.277
130192740 GT-AG 0 1.2361137309600472e-05 14161 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 3 9948427 9962587 Nothocercus julius 2585813 TGA|GTAAGTGTGT...TTATTTTTATAG/TTTATTTTTATA...TGAAG|GGA 2 1 42.003
130192741 GT-AG 0 1.000000099473604e-05 551 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 4 9962669 9963219 Nothocercus julius 2585813 CAG|GTAAGGCTTG...CTGTTTTTATTT/ATTTTTTTCACC...TGCAG|GCG 2 1 45.03
130192742 GT-AG 0 1.000000099473604e-05 25365 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 5 9963321 9988685 Nothocercus julius 2585813 CAG|GTAATGAGAT...AGCTTCTAATTA/AAGCTTCTAATT...TGCAG|GGG 1 1 48.804
130192743 GT-AG 0 6.006346815960678e-05 7776 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 6 9988797 9996572 Nothocercus julius 2585813 ATG|GTAAGCTGGA...TCTTCCTTTTCT/GTTGTTCTGATC...TGCAG|CCT 1 1 52.952
130192744 GT-AG 0 0.0001323444894789 447 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 7 9996762 9997208 Nothocercus julius 2585813 TTG|GTAAGCTTGC...TAACCATTATTC/ATAACCATTATT...TATAG|GCC 1 1 60.015
130192745 GT-AG 0 1.000000099473604e-05 11409 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 8 9997364 10008772 Nothocercus julius 2585813 AGG|GTGAGTGTAT...CCTGCCTTGCAT/TGTCAAGTAACT...TCCAG|AGA 0 1 65.807
130192746 GT-AG 0 1.1674257313715042e-05 15898 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 9 10008913 10024810 Nothocercus julius 2585813 AGA|GTAAGTGATT...TCCATCTTAATA/TCCATCTTAATA...TCAAG|GGC 2 1 71.039
130192747 GT-AG 0 1.000000099473604e-05 1679 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 10 10024904 10026582 Nothocercus julius 2585813 TGG|GTGAGTCTCC...TTAGTCTTATTT/CTTAGTCTTATT...TTCAG|AAC 2 1 74.514
130192748 GT-AG 0 1.000000099473604e-05 7667 rna-gnl|WGS:VZSV|NOTJUL_R09870_mrna 23944464 11 10026777 10034443 Nothocercus julius 2585813 AAG|GTAGGAGCTC...TATCTTGTAGTT/TTTGCTTCTATT...TTCAG|GTG 1 1 81.764

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