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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
214073640 GT-AG 0 0.0001253407161557 647 rna-XM_014264208.2 38725001 1 25339833 25340479 Zonotrichia albicollis 44394 GAG|GTAAACTGAA...TTTCTCTTCACC/TTTCTCTTCACC...TGCAG|ATA 0 1 5.0
214073641 GT-AG 0 1.000000099473604e-05 35436 rna-XM_014264208.2 38725001 2 25340652 25376087 Zonotrichia albicollis 44394 CTG|GTAAGATGCT...GTTATTTTATTT/TGTTATTTTATT...TTTAG|ATG 1 1 11.232
214073642 GT-AG 0 1.559731470783298e-05 3182 rna-XM_014264208.2 38725001 3 25376289 25379470 Zonotrichia albicollis 44394 GAG|GTACTGTAGA...ATTATTTTATTT/AATTATTTTATT...TTTAG|GTA 1 1 18.514
214073643 GT-AG 0 1.570449110916176e-05 2355 rna-XM_014264208.2 38725001 4 25379759 25382113 Zonotrichia albicollis 44394 CAA|GTAAGATTGA...TATGCTTTGAAC/GTTTTGCTAACA...TGAAG|ATT 1 1 28.949
214073644 GT-AG 0 1.000000099473604e-05 687 rna-XM_014264208.2 38725001 5 25382277 25382963 Zonotrichia albicollis 44394 GAG|GTAAGGTAAT...TGTCCTTTAAAA/TTTAAAATGATA...TACAG|AGT 2 1 34.855
214073645 GT-AG 0 1.000000099473604e-05 5927 rna-XM_014264208.2 38725001 6 25383190 25389116 Zonotrichia albicollis 44394 CAG|GTAAGATTTA...TTTTCCTTTATG/GTATGATTTATT...TGCAG|GAC 0 1 43.043
214073646 GT-AG 0 1.000000099473604e-05 505 rna-XM_014264208.2 38725001 7 25389325 25389829 Zonotrichia albicollis 44394 CTG|GTTAGTATCT...TTTTTTTTTTCT/TTCAGTTTAAAG...CCAAG|GTA 1 1 50.58
214073647 GT-AG 0 0.0002749960873336 566 rna-XM_014264208.2 38725001 8 25389970 25390535 Zonotrichia albicollis 44394 GAG|GTATTTGGTT...TGTACTTTATTC/AAGATTCTAATT...TTTAG|GAG 0 1 55.652
214073648 GT-AG 0 0.8979190774108139 1336 rna-XM_014264208.2 38725001 9 25390827 25392162 Zonotrichia albicollis 44394 AAG|GTATCTATTT...GGAATTTTAATC/GGAATTTTAATC...AACAG|GAA 0 1 66.196
214073649 GC-AG 0 1.000000099473604e-05 2089 rna-XM_014264208.2 38725001 10 25392339 25394427 Zonotrichia albicollis 44394 AAG|GCAAGTGTGA...TGGACTTTAATT/CTTTGTTTTACT...GACAG|AGT 2 1 72.572
214073650 GT-AG 0 1.000000099473604e-05 1107 rna-XM_014264208.2 38725001 11 25394690 25395796 Zonotrichia albicollis 44394 CAG|GTCTGGTAAC...ATCTTCTTGCTT/ATGCTTTTCATC...CTCAG|GCA 0 1 82.065
214073651 GT-AG 0 1.000000099473604e-05 322 rna-XM_014264208.2 38725001 12 25395864 25396185 Zonotrichia albicollis 44394 CAG|GTCAGAGGTG...TTTTTCTTTTCA/TCCCAATTTATC...TACAG|GTT 1 1 84.493
214073652 GT-AG 0 1.000000099473604e-05 2644 rna-XM_014264208.2 38725001 13 25396387 25399030 Zonotrichia albicollis 44394 AAA|GTGAGTTTGT...TCTGCCTTAGTT/TTTTCTCTGATT...TTCAG|ATA 1 1 91.775

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