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)

12 rows where transcript_id = 8322081

✎ 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
44702271 GT-AG 0 1.000000099473604e-05 14420 rna-XM_006830776.1 8322081 1 53037208 53051627 Chrysochloris asiatica 185453 CCG|GTGAGGGGGC...CAGACGGTAACC/CTGGAGCTCAGA...GACAG|AGC 0 1 7.529
44702272 GT-AG 0 1.000000099473604e-05 707 rna-XM_006830776.1 8322081 2 53051737 53052443 Chrysochloris asiatica 185453 TGT|GTGAGTACCC...TGGTCCCTGTCC/TTGGTGGTGATC...TGCAG|ACG 1 1 14.543
44702273 GT-AG 0 1.000000099473604e-05 273 rna-XM_006830776.1 8322081 3 53052581 53052853 Chrysochloris asiatica 185453 AGC|GTGAGTAGCC...TAACCCTGGCCT/AACCTGGTAACC...CCCAG|GTG 0 1 23.359
44702274 GT-AG 0 3.1518790975007794e-05 249 rna-XM_006830776.1 8322081 4 53052979 53053227 Chrysochloris asiatica 185453 GCA|GTAGGTCCCT...GGCTTCTTTGTG/GCCTGGCTGACC...TGCAG|TGA 2 1 31.403
44702275 GT-AG 0 1.000000099473604e-05 100 rna-XM_006830776.1 8322081 5 53053304 53053403 Chrysochloris asiatica 185453 AAG|GTGTGTGAGG...GAGGTCTCTGCC/AGCCAGGTGACC...CACAG|CTC 0 1 36.293
44702276 GT-AG 0 1.000000099473604e-05 79 rna-XM_006830776.1 8322081 6 53053466 53053544 Chrysochloris asiatica 185453 GAT|GTAAGGCGCG...CAGGCCCTAGCT/CCCTAGCTAACC...CGCAG|CCC 2 1 40.283
44702277 GT-AG 0 1.000000099473604e-05 86 rna-XM_006830776.1 8322081 7 53053642 53053727 Chrysochloris asiatica 185453 ACA|GTGAGCGCCT...AGCCGCTTCCCT/CTCGTGCGCATG...TGCAG|GCC 0 1 46.525
44702278 GT-AG 0 1.000000099473604e-05 121 rna-XM_006830776.1 8322081 8 53053865 53053985 Chrysochloris asiatica 185453 AAG|GTGGGGGCCT...GGCGCGTTGAAA/AACTCGCTAACG...TCCAG|GCC 2 1 55.341
44702279 GT-AG 0 1.000000099473604e-05 961 rna-XM_006830776.1 8322081 9 53054232 53055192 Chrysochloris asiatica 185453 CAA|GTGAGTCAGC...CCCACCTTCCAC/CCATGCGTCACC...TCCAG|GAA 2 1 71.171
44702280 GT-AG 0 1.000000099473604e-05 75 rna-XM_006830776.1 8322081 10 53055299 53055373 Chrysochloris asiatica 185453 GAT|GTGAGTGCCC...GACTCCTGACCC/AGCTGCCTGACT...TTTAG|CTG 0 1 77.992
44702281 GT-AG 0 1.000000099473604e-05 91 rna-XM_006830776.1 8322081 11 53055440 53055530 Chrysochloris asiatica 185453 AGC|GTGCGTGGGG...GGAGCCTTCACA/GGAGCCTTCACA...TGCAG|ATC 0 1 82.239
44702282 GT-AG 0 1.000000099473604e-05 93 rna-XM_006830776.1 8322081 12 53055601 53055693 Chrysochloris asiatica 185453 CAG|GTGAGTGAGC...CCCACCTTGACC/CCCACCTTGACC...CACAG|GGA 1 1 86.744

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