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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
213933226 GT-AG 0 1.000000099473604e-05 140 rna-XM_016011175.2 38690330 1 38681169 38681308 Ziziphus jujuba 326968 TTG|GTACTAATAT...ATTTTGTTAAAT/GTGAATCTGATT...TGCAG|GTG 1 1 0.365
213933227 GT-AG 0 0.0005379328858637 106 rna-XM_016011175.2 38690330 2 38679108 38679213 Ziziphus jujuba 326968 ACT|GTAAGTTAAA...ACTTTCTTGATG/CTGATTTTTACT...AACAG|GTT 0 1 44.908
213933228 GT-AG 0 0.0221862099589976 95 rna-XM_016011175.2 38690330 3 38678692 38678786 Ziziphus jujuba 326968 AAT|GTATATAAGG...TCAGTCTTAATT/TCAGTCTTAATT...TGCAG|GAT 0 1 52.221
213933229 GT-AG 0 4.49228586519286e-05 106 rna-XM_016011175.2 38690330 4 38678499 38678604 Ziziphus jujuba 326968 CTG|GTAATTATTT...TATATCTTGATC/TATATCTTGATC...TGTAG|GTT 0 1 54.204
213933230 GT-AG 0 1.883758617564952e-05 94 rna-XM_016011175.2 38690330 5 38677784 38677877 Ziziphus jujuba 326968 CGA|GTAAGTTAGT...AAGTTCATATCA/ATAGTCATCATT...TTCAG|GCT 0 1 68.353
213933231 GT-AG 0 1.000000099473604e-05 108 rna-XM_016011175.2 38690330 6 38677511 38677618 Ziziphus jujuba 326968 CAG|GTCAGTCCAA...TGGTTCTTTTCT/GATAAGCTAAAC...TCAAG|GGC 0 1 72.112
213933232 GT-AG 0 5.506690279656842e-05 109 rna-XM_016011175.2 38690330 7 38677107 38677215 Ziziphus jujuba 326968 CAG|GTACTTACCT...CCCTTTTTGATC/CCCTTTTTGATC...TGCAG|GGC 1 1 78.833
213933233 GT-AG 0 1.000000099473604e-05 148 rna-XM_016011175.2 38690330 8 38676744 38676891 Ziziphus jujuba 326968 GAG|GTAAAAGAAT...TTGGTTTGAATT/GATATATTTATT...TTCAG|ATC 0 1 83.732
213933234 GT-AG 0 1.000000099473604e-05 86 rna-XM_016011175.2 38690330 9 38676352 38676437 Ziziphus jujuba 326968 ATG|GTTAGCAACC...CAAGTTTTACTA/TACTGTTTCATT...CATAG|GCT 0 1 90.704
213933235 GT-AG 0 1.000000099473604e-05 118 rna-XM_016011175.2 38690330 10 38676170 38676287 Ziziphus jujuba 326968 CTG|GTGAGTTTTA...ATATCTATATCT/AGCTTTTTCATG...GACAG|TGA 1 1 92.162
213933236 GT-AG 0 0.0004900037388599 102 rna-XM_016011175.2 38690330 11 38675828 38675929 Ziziphus jujuba 326968 ATG|GTATGTTGGT...AAGTTCATATTA/ATTATATTTACA...TGCAG|GGA 1 1 97.63

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