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)

10 rows where transcript_id = 16590288

✎ 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
88158618 GT-AG 0 1.000000099473604e-05 74879 rna-XM_044658031.1 16590288 1 527017903 527092781 Gracilinanus agilis 191870 AAG|GTCGGTATTA...AAAATTTTATTT/TAAAATTTTATT...TCTAG|TGG 2 1 0.831
88158619 GT-AG 0 3.1049348362935565e-05 1144 rna-XM_044658031.1 16590288 2 527016650 527017793 Gracilinanus agilis 191870 AAA|GTAAGTTGGA...AATATTTTAAAT/AAATTGCTAATT...TATAG|AAA 0 1 2.45
88158620 GT-AG 0 1.000000099473604e-05 19599 rna-XM_044658031.1 16590288 3 526996939 527016537 Gracilinanus agilis 191870 GAG|GTAGGTGTGA...ATAATCTTATTT/TATAATCTTATT...TTTAG|TTT 1 1 4.113
88158621 GT-AG 0 0.0001241547173508 20139 rna-XM_044658031.1 16590288 4 526976678 526996816 Gracilinanus agilis 191870 CAG|GTATGGTTAC...TGTGTTTTATTA/TTGTGTTTTATT...TATAG|GCT 0 1 5.924
88158622 GT-AG 0 1.000000099473604e-05 933 rna-XM_044658031.1 16590288 5 526975627 526976559 Gracilinanus agilis 191870 CAG|GTAAAATAGC...ACTGTTTTCTTT/AGTTGTATAACT...TTTAG|GAT 1 1 7.676
88158623 GT-AG 0 1.000000099473604e-05 9663 rna-XM_044658031.1 16590288 6 526965844 526975506 Gracilinanus agilis 191870 TAG|GTGAGTATAC...TACTTCTTGCTT/ACACATATCAAT...CACAG|GAC 1 1 9.458
88158624 GT-AG 0 1.000000099473604e-05 47770 rna-XM_044658031.1 16590288 7 526917910 526965679 Gracilinanus agilis 191870 CAG|GTAAGTAGAA...TGTATCTTATTT/CTTATTTTTATT...TCTAG|ATG 0 1 11.893
88158625 GT-AG 0 1.3364455607470374e-05 1167 rna-XM_044658031.1 16590288 8 526916646 526917812 Gracilinanus agilis 191870 AAG|GTAAATTTCC...ACACTTTTATTC/CTTTTATTCAAA...TGTAG|GAG 1 1 13.333
88158626 GT-AG 0 3.2865670983737245e-05 6549 rna-XM_044658031.1 16590288 9 526909991 526916539 Gracilinanus agilis 191870 AAA|GTAAGTATTA...TTCTCTATAATT/TAGTAACTTAAT...CTCAG|GCT 2 1 14.907
88158627 GT-AG 0 0.0002412683837109 4611 rna-XM_044658031.1 16590288 10 526903429 526908039 Gracilinanus agilis 191870 AAG|GTATGGTATT...CCTTTTTTATTT/CCCTTTTTTATT...TTCAG|ATC 0 1 43.875

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