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

✎ 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
213933797 GT-AG 0 0.0082823599394083 1333 rna-XM_016043363.2 38690371 1 34120538 34121870 Ziziphus jujuba 326968 CAG|GTTCCCTTAT...TTGGCATTGAAA/ATTTTGCTGACA...TGCAG|TAG 2 1 7.864
213933798 GT-AG 0 0.0003020453526452 189 rna-XM_016043363.2 38690371 2 34122766 34122954 Ziziphus jujuba 326968 GAG|GTATGTAATC...ATTCTTTTATTG/TATTCTTTTATT...AACAG|GTG 0 1 33.738
213933799 GT-AG 0 1.000000099473604e-05 546 rna-XM_016043363.2 38690371 3 34123147 34123692 Ziziphus jujuba 326968 AAG|GTTATATATA...ACAAACTTGAAA/ACAAACTTGAAA...TGTAG|GTT 0 1 39.289
213933800 GT-AG 0 0.0111068909888893 541 rna-XM_016043363.2 38690371 4 34124373 34124913 Ziziphus jujuba 326968 TAG|GTATGCATCA...TTTAACTTGATT/TTTAACTTGATT...TACAG|TAA 2 1 58.948
213933801 GT-AG 0 1.000000099473604e-05 962 rna-XM_016043363.2 38690371 5 34125392 34126353 Ziziphus jujuba 326968 CAG|GTGATTTCTG...GGTTCTTTATAC/TTTAAACTCATT...AACAG|GGC 0 1 72.767
213933802 GT-AG 0 0.0122805287657594 246 rna-XM_016043363.2 38690371 6 34126450 34126695 Ziziphus jujuba 326968 CAG|GTTTACTTTT...CATTCTTTGTTT/CAGGCATTCACA...ACCAG|AAT 0 1 75.542
213933803 GT-AG 0 1.000000099473604e-05 70 rna-XM_016043363.2 38690371 7 34126789 34126858 Ziziphus jujuba 326968 CAG|GTTAGTTGTT...CATCTGTTAATG/AGAAATTTCATC...TGCAG|CTG 0 1 78.231
213933804 GT-AG 0 1.000000099473604e-05 505 rna-XM_016043363.2 38690371 8 34127054 34127558 Ziziphus jujuba 326968 AAG|GTAAAATGTT...AAATGTTTAATA/AAATGTTTAATA...TTCAG|GAT 0 1 83.868
213933805 GT-AG 0 0.5885585885792229 113 rna-XM_016043363.2 38690371 9 34127652 34127764 Ziziphus jujuba 326968 AAG|GTACCCTTAA...CTCTTTTTGTCA/CTTTTTGTCAAG...CTCAG|GTT 0 1 86.557
213933806 GT-AG 0 5.006707250830232e-05 79 rna-XM_016043363.2 38690371 10 34127978 34128056 Ziziphus jujuba 326968 CAG|GTTCTCTCTC...CTCTCTCTAATG/TTCTGATTCATT...CACAG|GGT 0 1 92.715
213933807 GT-AG 0 1.000000099473604e-05 176 rna-XM_016043363.2 38690371 11 34128147 34128322 Ziziphus jujuba 326968 CAG|GTTATCCATT...GAGGACTTAAAA/ACATTGTTCAAA...TTCAG|GTT 0 1 95.317

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