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

✎ 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
51566143 GT-AG 0 1.2300267119022386e-05 959 rna-XM_042030114.1 9472636 1 84201 85159 Corvus kubaryi 68294 TGG|GTAAGCTCCT...ACCCCCCTGTCC/AGTGGGCTCAGG...CGCAG|GTG 2 1 3.768
51566144 GT-AG 0 1.000000099473604e-05 113 rna-XM_042030114.1 9472636 2 85221 85333 Corvus kubaryi 68294 CAG|GTGAGGGGGT...GTCACCTTTCTC/CCATTGCTGACC...CGCAG|GAC 0 1 7.663
51566145 GT-AG 0 1.000000099473604e-05 331 rna-XM_042030114.1 9472636 3 85480 85810 Corvus kubaryi 68294 GCG|GTGAGTGGGG...CGTGCTGTCACT/CGTGCTGTCACT...CCCAG|GAC 2 1 16.986
51566146 GT-AG 0 1.000000099473604e-05 85 rna-XM_042030114.1 9472636 4 85872 85956 Corvus kubaryi 68294 CAG|GTGAGCGCCG...GGCCCCTGGGCT/CTGGGCTCCATC...CGCAG|GGC 0 1 20.881
51566147 GT-AG 0 1.000000099473604e-05 86 rna-XM_042030114.1 9472636 5 86066 86151 Corvus kubaryi 68294 GAG|GTGAGTCCCG...ATCACCCCAATC/CCCGGCATCACC...GGCAG|CCC 1 1 27.842
51566148 GT-AG 0 1.000000099473604e-05 89 rna-XM_042030114.1 9472636 6 86280 86368 Corvus kubaryi 68294 CTG|GTGGGTGCAC...CCAGCCTCGAGC/CCAGCGCTGAGG...CGCAG|AGC 0 1 36.015
51566149 GT-AG 0 1.000000099473604e-05 445 rna-XM_042030114.1 9472636 7 86493 86937 Corvus kubaryi 68294 CCG|GTGAATGAAC...TCTGCCCTGACT/TCTGCCCTGACT...CCCAG|GAT 1 1 43.934
51566150 GT-AG 0 1.000000099473604e-05 601 rna-XM_042030114.1 9472636 8 87022 87622 Corvus kubaryi 68294 TGG|GTAGGACATG...TTTGCCAGAGCC/GTTTGCCAGAGC...CGCAG|CGC 1 1 49.298
51566151 GT-AG 0 1.000000099473604e-05 86 rna-XM_042030114.1 9472636 9 87787 87872 Corvus kubaryi 68294 ATG|GTGAGGGCAG...CTCCCCTCAGCC/GCTCCCCTCAGC...CCCAG|GTG 0 1 59.77
51566152 GT-AG 0 0.1388844455185063 245 rna-XM_042030114.1 9472636 10 88117 88361 Corvus kubaryi 68294 CAG|GTACCTTCTC...GCAGCTTTATCC/TGCAGCTTTATC...CGCAG|GGC 1 1 75.351
51566153 GT-AG 0 1.000000099473604e-05 286 rna-XM_042030114.1 9472636 11 88434 88719 Corvus kubaryi 68294 TCG|GTGAGCGCCG...CCGATCTTCACC/CCGATCTTCACC...CGCAG|TAT 1 1 79.949

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