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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, 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
44702127 GT-AG 0 1.000000099473604e-05 110 rna-XM_006830770.1 8322061 1 52862714 52862823 Chrysochloris asiatica 185453 CTG|GTAAGAGCAG...GTTCCCTTGCCC/GGTCCCCTAATT...TGCAG|CGT 2 1 3.966
44702128 GT-AG 0 1.000000099473604e-05 83 rna-XM_006830770.1 8322061 2 52863004 52863086 Chrysochloris asiatica 185453 AGG|GTGAGCGGCA...CTCTCCTCGTCT/ATCCCACTCAGG...CCCAG|GGC 2 1 13.612
44702129 GT-AG 0 0.0014164041010541 165 rna-XM_006830770.1 8322061 3 52863199 52863363 Chrysochloris asiatica 185453 TAT|GTATTTCGGG...TGCGCACTGACC/TGCGCACTGACC...CACAG|ATG 0 1 19.614
44702130 GT-AG 0 1.000000099473604e-05 75 rna-XM_006830770.1 8322061 4 52863512 52863586 Chrysochloris asiatica 185453 GTG|GTGAGGCTCG...CTACCCTGGACC/ACCATACTGAAA...TTCAG|GGC 1 1 27.546
44702131 GT-AG 0 1.000000099473604e-05 83 rna-XM_006830770.1 8322061 5 52863689 52863771 Chrysochloris asiatica 185453 CGG|GTGGGTGCCC...CTGTTCTTCCCC/CCAGCCCTCACG...AACAG|GCA 1 1 33.012
44702132 GT-AG 0 1.000000099473604e-05 74 rna-XM_006830770.1 8322061 6 52863969 52864042 Chrysochloris asiatica 185453 AAG|GTGGAGCTGC...ATCATCTGACTC/CATCATCTGACT...TCAAG|CTG 0 1 43.569
44702133 GT-AG 0 1.000000099473604e-05 82 rna-XM_006830770.1 8322061 7 52864240 52864321 Chrysochloris asiatica 185453 CAA|GTAAGTGGTT...GCGCCTCTGACT/GCGCCTCTGACT...GACAG|GGC 2 1 54.126
44702134 AT-AC 1 99.9999996295706 121 rna-XM_006830770.1 8322061 8 52864476 52864596 Chrysochloris asiatica 185453 AAG|ATATCCTCCT...GAGTCCTTGACT/GAGTCCTTGACT...GTCAC|GCC 0 1 62.379
44702135 GT-AG 0 1.000000099473604e-05 95 rna-XM_006830770.1 8322061 9 52864693 52864787 Chrysochloris asiatica 185453 CAG|GTGACGCCAC...GCCTCTGTGCCT/CCAGTCTCCACG...CTCAG|GGG 0 1 67.524
44702136 GT-AG 0 1.000000099473604e-05 73 rna-XM_006830770.1 8322061 10 52864979 52865051 Chrysochloris asiatica 185453 CAG|GTGAGGGCCA...TGCTTCTGAGCC/CTGCTTCTGAGC...TGTAG|GGT 2 1 77.76
44702137 GT-AG 0 5.994771894370567e-05 87 rna-XM_006830770.1 8322061 11 52865223 52865309 Chrysochloris asiatica 185453 CCG|GTACGTGTCC...CCTGCCCTAACC/CCTGCCCTAACC...CCCAG|GCC 2 1 86.924

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