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)

13 rows where transcript_id = 8322048

✎ 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
44702009 GT-AG 0 1.000000099473604e-05 102 rna-XM_006830867.1 8322048 1 52343943 52344044 Chrysochloris asiatica 185453 CAG|GTGAGACAGA...GTGAGCTAAGAG/GGTGAGCTAAGA...CCTAG|GTC 0 1 12.465
44702010 GT-AG 0 1.000000099473604e-05 213 rna-XM_006830867.1 8322048 2 52343577 52343789 Chrysochloris asiatica 185453 CAG|GTCAGACCCT...GTCCCCTTCAAT/CAATAGCTGACT...CCCAG|GTG 0 1 19.529
44702011 GT-AG 0 0.0162451401083813 493 rna-XM_006830867.1 8322048 3 52342929 52343421 Chrysochloris asiatica 185453 CCG|GTAACCATCT...TGCGCCTTGTCT/CCTTGTCTCACT...TTCAG|GGC 2 1 26.685
44702012 GT-AG 0 1.000000099473604e-05 154 rna-XM_006830867.1 8322048 4 52342657 52342810 Chrysochloris asiatica 185453 GCG|GTAAGTGACT...CAGTCCCCGACT/GAGTGGGTCACT...CGCAG|GCT 0 1 32.133
44702013 GT-AG 0 1.000000099473604e-05 84 rna-XM_006830867.1 8322048 5 52342388 52342471 Chrysochloris asiatica 185453 CAG|GTGAGGGCGC...GCTCTCTTGCAC/CTTGCACTCACG...TCCAG|TTG 2 1 40.674
44702014 GT-AG 0 1.000000099473604e-05 128 rna-XM_006830867.1 8322048 6 52342122 52342249 Chrysochloris asiatica 185453 CAG|GTGAGGACAA...TTTCCCGTCCTC/CGAGCTCCCATT...CCTAG|CGC 2 1 47.045
44702015 GT-AG 0 1.000000099473604e-05 94 rna-XM_006830867.1 8322048 7 52341913 52342006 Chrysochloris asiatica 185453 GGG|GTGAGCCCAC...TGACCCGTCTCC/AAGGTGCTGACC...CCCAG|TTG 0 1 52.355
44702016 GT-AG 0 1.000000099473604e-05 75 rna-XM_006830867.1 8322048 8 52341694 52341768 Chrysochloris asiatica 185453 AAG|GTGAGGGGCG...GAATCTCTGCCC/TGCCCACGAATC...GGCAG|GTG 0 1 59.003
44702017 GT-AG 0 1.000000099473604e-05 243 rna-XM_006830867.1 8322048 9 52341277 52341519 Chrysochloris asiatica 185453 GAC|GTGAGCCCCG...ATTGCCCTAACT/ATTGCCCTAACT...TATAG|GCC 0 1 67.036
44702018 GT-AG 0 1.000000099473604e-05 216 rna-XM_006830867.1 8322048 10 52340893 52341108 Chrysochloris asiatica 185453 GAG|GTCAGTGCTC...GCTCCCTTCTCA/CCACTCCTCACC...CCCAG|AGC 0 1 74.792
44702019 GT-AG 0 1.000000099473604e-05 231 rna-XM_006830867.1 8322048 11 52340542 52340772 Chrysochloris asiatica 185453 CTG|GTCAGTGGGG...CCTGCCCTAACG/CCTGCCCTAACG...CTCAG|GTT 0 1 80.332
44702020 GT-AG 0 1.000000099473604e-05 120 rna-XM_006830867.1 8322048 12 52340319 52340438 Chrysochloris asiatica 185453 TAG|GTGAGGTCCG...GTTCTGTTGACG/CCGGCACTCACG...TCCAG|GTT 1 1 85.088
44702021 GT-AG 0 1.000000099473604e-05 145 rna-XM_006830867.1 8322048 13 52340108 52340252 Chrysochloris asiatica 185453 ATG|GTGAGGCGCT...CCTGCCTGAGCT/CCCTGCCTGAGC...TACAG|ACT 1 1 88.135

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