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

✎ 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
214073579 GT-AG 0 1.000000099473604e-05 1648 rna-XM_005479731.3 38724998 1 45144840 45146487 Zonotrichia albicollis 44394 AAG|GTTTGGGAAT...CTGCCCTCAGAT/CAGGGAATGAAT...CACAG|GTC 1 1 1.1
214073580 GT-AG 0 1.5704912394523012e-05 1613 rna-XM_005479731.3 38724998 2 45141915 45143527 Zonotrichia albicollis 44394 GGG|GTAAGTTGTT...TCCCTCCTAACC/TTTTTGGTCACT...CCCAG|TTC 2 1 47.675
214073581 GT-AG 0 1.000000099473604e-05 45578 rna-XM_005479731.3 38724998 3 45096143 45141720 Zonotrichia albicollis 44394 AAG|GTAGGAACAG...CACACCTGAATT/CTGAATTTCAAG...CCTAG|GAT 1 1 54.562
214073582 GT-AG 0 6.355763172993369e-05 35033 rna-XM_005479731.3 38724998 4 45060959 45095991 Zonotrichia albicollis 44394 CAG|GTAATTCTGC...CTAACCTTAACT/CTTAACTTTATT...TGCAG|ATC 2 1 59.922
214073583 GT-AG 0 1.000000099473604e-05 10709 rna-XM_005479731.3 38724998 5 45050056 45060764 Zonotrichia albicollis 44394 CAG|GTGAGCAGGA...AATTTCTCAATT/AAATTTCTCAAT...TTCAG|CAC 1 1 66.809
214073584 GT-AG 0 0.0001167871086287 1574 rna-XM_005479731.3 38724998 6 45048400 45049973 Zonotrichia albicollis 44394 CAG|GTCTGTATTC...TTCTCCCTGACC/TTCTCCCTGACC...CTCAG|CCG 2 1 69.72
214073585 GT-AG 0 1.000000099473604e-05 1685 rna-XM_005479731.3 38724998 7 45046559 45048243 Zonotrichia albicollis 44394 CAG|GTGGGGATGG...GCTTTTGTGACC/ATCTGCTTTATC...TCCAG|GTT 2 1 75.257
214073586 GT-AG 0 1.000000099473604e-05 4573 rna-XM_005479731.3 38724998 8 45041916 45046488 Zonotrichia albicollis 44394 AAG|GTCTGTGTGA...TTCTCCTCCTCT/GAATTGCTGACG...TCCAG|ATG 0 1 77.742
214073587 GT-AG 0 1.000000099473604e-05 12063 rna-XM_005479731.3 38724998 9 45029721 45041783 Zonotrichia albicollis 44394 AAG|GTAAAGAGGG...TTCCTCTTTCCT/CCTTTTCCAACT...GGCAG|TGC 0 1 82.428
214073588 GT-AG 0 1.000000099473604e-05 1548 rna-XM_005479731.3 38724998 10 45027994 45029541 Zonotrichia albicollis 44394 CAG|GTAGGACAGA...TTTTCCTTATTA/CTTTTCCTTATT...TGCAG|GAA 2 1 88.782
214073589 GT-AG 0 1.000000099473604e-05 7938 rna-XM_005479731.3 38724998 11 45019847 45027784 Zonotrichia albicollis 44394 CAG|GTAGGAATCA...TCCTCCTTTCCT/ACCTCAGTGACT...CCCAG|GCA 1 1 96.202
214073590 GT-AG 0 1.000000099473604e-05 155 rna-XM_005479731.3 38724998 12 45019617 45019771 Zonotrichia albicollis 44394 GAG|GTGAGTCCAG...ATTCCCTTCCCT/CTCGCCATCACC...TCCAG|GCA 1 1 98.864

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