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

✎ 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
214074230 GT-AG 0 1.000000099473604e-05 20208 rna-XM_026791721.1 38725045 1 12513914 12534121 Zonotrichia albicollis 44394 CAG|GTAAGGTTGC...TTTGGCTTAATT/CAATATCTCACT...TAAAG|GAG 0 1 3.191
214074231 GT-AG 0 0.0025233247921684 932 rna-XM_026791721.1 38725045 2 12534270 12535201 Zonotrichia albicollis 44394 CAG|GTATGTTCTG...GATTCTCTAATT/TCTAATTTGATT...AACAG|AAA 1 1 10.689
214074232 GT-AG 0 1.000000099473604e-05 8623 rna-XM_026791721.1 38725045 3 12535334 12543956 Zonotrichia albicollis 44394 CAT|GTAAGAAAGC...GGAGTCTGAACT/CTAAACTTCATC...TTTAG|TGC 1 1 17.376
214074233 GT-AG 0 0.0001374793236805 13751 rna-XM_026791721.1 38725045 4 12544086 12557836 Zonotrichia albicollis 44394 GCA|GTAAGTTGAT...TTTTTCTGAATT/TTGTTTTTCAAT...TTCAG|GCA 1 1 23.911
214074234 GT-AG 0 1.000000099473604e-05 6044 rna-XM_026791721.1 38725045 5 12557866 12563909 Zonotrichia albicollis 44394 AAG|GTAAGACTGA...TTTTTTTTATTT/TTTTTTTTTATT...TTCAG|GAC 0 1 25.38
214074235 GT-AG 0 1.000000099473604e-05 3818 rna-XM_026791721.1 38725045 6 12564080 12567897 Zonotrichia albicollis 44394 AAG|GTGGGTTTTT...TGTATTTTGAAG/TGTATTTTGAAG...CACAG|CTT 2 1 33.992
214074236 GT-AG 0 4.6490444802492775e-05 38732 rna-XM_026791721.1 38725045 7 12568065 12606796 Zonotrichia albicollis 44394 TGG|GTAACTGCAA...CAAAATTTAATC/CATGTGTTCATC...TGCAG|AGG 1 1 42.452
214074237 GT-AG 0 1.000000099473604e-05 16418 rna-XM_026791721.1 38725045 8 12606933 12623350 Zonotrichia albicollis 44394 CAG|GTAAAATCTA...TTCATTTTATTT/AATGTTTTCATT...TTTAG|ATT 2 1 49.341
214074238 GT-AG 0 3.08013465347932e-05 4875 rna-XM_026791721.1 38725045 9 12623437 12628311 Zonotrichia albicollis 44394 ATG|GTAAGTTGTA...ACTTACTTGATT/CTAACACTTACT...AACAG|CTC 1 1 53.698
214074239 GT-AG 0 0.0002397926333842 10322 rna-XM_026791721.1 38725045 10 12628386 12638707 Zonotrichia albicollis 44394 TCT|GTAAGTACCT...TTCTTTTTATCT/TTTCTTTTTATC...GTAAG|TCT 0 1 57.447
214074240 GT-AG 0 0.0017590881019206 5267 rna-XM_026791721.1 38725045 11 12638829 12644095 Zonotrichia albicollis 44394 CTG|GTATGTATGG...TCTTTCTTTTCC/CATTTGTTCATG...CACAG|ACA 1 1 63.576
214074241 GT-AG 0 2.1779628037265276e-05 5348 rna-XM_026791721.1 38725045 12 12644575 12649922 Zonotrichia albicollis 44394 GAA|GTAAGATTTT...GTCATTTTATCT/TTTTATCTAAAA...GGCAG|GAT 0 1 87.842

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