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

✎ 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
39980142 GT-AG 0 1.000000099473604e-05 29196 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 1 366670 395865 Ceuthmochares aereus 1961834 GAG|GTAAGGCAAG...TGTTTTTTATTT/CTGTTTTTTATT...CACAG|AAG 0 1 7.692
39980143 GT-AG 0 1.000000099473604e-05 961 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 2 365514 366474 Ceuthmochares aereus 1961834 CTA|GTAAGAACCC...ATAACTTTACCT/CATAACTTTACC...TGTAG|CTT 0 1 16.026
39980144 GT-AG 0 2.993968711162707e-05 905 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 3 364486 365390 Ceuthmochares aereus 1961834 AAG|GTACAAATTT...GCTTTTTTATTT/TTTTATTTTATT...TTAAG|ACT 0 1 21.282
39980145 GT-AG 0 1.000000099473604e-05 3988 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 4 360293 364280 Ceuthmochares aereus 1961834 AAG|GTAGGTGTGG...AATTCCATAATT/GCATACCTTATG...TTTAG|CCA 1 1 30.043
39980146 GT-AG 0 1.1069504339474577e-05 108 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 5 360139 360246 Ceuthmochares aereus 1961834 AAA|GTAAGTACTA...TTGTTTTTATAA/CTTGTTTTTATA...TCCAG|TGA 2 1 32.009
39980147 GT-AG 0 1.000000099473604e-05 9445 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 6 350620 360064 Ceuthmochares aereus 1961834 CAG|GTAAGCAATG...ATGTGCTTAAAA/ACATTGTTTATG...CTTAG|GCC 1 1 35.171
39980148 GT-AG 0 2.3102593546436013e-05 560 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 7 349147 349706 Ceuthmochares aereus 1961834 AAG|GTATAGTACA...TCAAACTGAATG/TTCAAACTGAAT...TGCAG|ATC 2 1 74.188
39980149 GT-AG 0 0.0001105226493153 133 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 8 348906 349038 Ceuthmochares aereus 1961834 GTA|GTGGATTTTG...AGGTGCTTGATT/TTTACATTCACA...CCTAG|ATA 2 1 78.803
39980150 GT-AG 0 0.0001477872816293 7882 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 9 340903 348784 Ceuthmochares aereus 1961834 ATT|GTAAGCACTG...AGTTTGTTAAAA/AGTTTGTTAAAA...AACAG|GAA 0 1 83.974
39980151 GT-AG 0 1.000000099473604e-05 344 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 10 340437 340780 Ceuthmochares aereus 1961834 TGG|GTAAGAACTT...CTCTTTTTAGCT/CTTTTGTTCACA...TGCAG|AGA 2 1 89.188
39980152 GT-AG 0 0.0001409367691885 4882 rna-gnl|WGS:VWPQ|CEUAER_R06473_mrna 7607391 11 335403 340284 Ceuthmochares aereus 1961834 TAG|GTACGTATTT...CTATTCTTGCCT/TCTGAACTGAAT...TTCAG|ATT 1 1 95.684

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