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

✎ 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
214074213 GT-AG 0 1.000000099473604e-05 1058 rna-XM_005479370.3 38725042 1 14640830 14641887 Zonotrichia albicollis 44394 CAG|GTAAGTTGGT...AGACTCTTTATT/AGACTCTTTATT...TACAG|CTC 1 1 9.741
214074214 GT-AG 0 1.000000099473604e-05 4618 rna-XM_005479370.3 38725042 2 14636081 14640698 Zonotrichia albicollis 44394 AAG|GTAAGGTCAC...TGTTCTTTGTCT/CCAGTGTTTACC...TGAAG|ATG 0 1 16.153
214074215 GT-AG 0 1.1438746481735003e-05 2290 rna-XM_005479370.3 38725042 3 14633631 14635920 Zonotrichia albicollis 44394 CAG|GTATGACATT...AGCACCTTACTC/GTATTTCTGATT...TGCAG|GCA 1 1 23.984
214074216 GT-AG 0 1.464695573976393e-05 24331 rna-XM_005479370.3 38725042 4 14609164 14633494 Zonotrichia albicollis 44394 GAG|GTTTGTACTC...CTTTTCATGACT/TTTCTTTTCATG...TGCAG|GTA 2 1 30.641
214074217 GT-AG 0 1.000000099473604e-05 3556 rna-XM_005479370.3 38725042 5 14605448 14609003 Zonotrichia albicollis 44394 CAG|GTCTGTGCTT...TTCTTGTTGATC/TTCTTGTTGATC...TTCAG|AAT 0 1 38.473
214074218 GT-AG 0 0.002028044688629 5977 rna-XM_005479370.3 38725042 6 14599363 14605339 Zonotrichia albicollis 44394 GAG|GTATGTGTTA...AGTGCTTTGACT/CTTTGACTCAGT...AAAAG|GTG 0 1 43.759
214074219 GT-AG 0 0.0033288558534634 2416 rna-XM_005479370.3 38725042 7 14596734 14599149 Zonotrichia albicollis 44394 AAG|GTATGTGTCC...TTTCCTTTAATC/TTTCCTTTAATC...TTTAG|ACT 0 1 54.185
214074220 GT-AG 0 2.7007637175336408 3201 rna-XM_005479370.3 38725042 8 14593395 14596595 Zonotrichia albicollis 44394 CAG|GTACCCTTTG...TTTGTCATGATT/TTTGTCATGATT...TTAAG|GTA 0 1 60.94
214074221 GT-AG 0 1.000000099473604e-05 3991 rna-XM_005479370.3 38725042 9 14589272 14593262 Zonotrichia albicollis 44394 AAG|GTGAGAACCA...TGCTCTTTACTT/TCTTTACTTACT...TTCAG|CTT 0 1 67.401
214074222 GT-AG 0 4.174427334442977e-05 13115 rna-XM_005479370.3 38725042 10 14576096 14589210 Zonotrichia albicollis 44394 ATA|GTAAGTATTG...TGATCTTTGGTT/ATGAGAATGATC...TTCAG|CAC 1 1 70.387
214074223 GT-AG 0 1.000000099473604e-05 23563 rna-XM_005479370.3 38725042 11 14552225 14575787 Zonotrichia albicollis 44394 CAG|GTATGGGAGG...TGGTGTTTAGCA/ACGTATGTTATT...TATAG|GTA 0 1 85.463
214074224 GT-AG 0 0.1927484389770822 59615 rna-XM_005479370.3 38725042 12 14492496 14552110 Zonotrichia albicollis 44394 CAG|GTATCATATC...GGTTTTTTGACA/GGTTTTTTGACA...TTTAG|GCA 0 1 91.043
214074225 GT-AG 0 1.6994249187126747e-05 845 rna-XM_005479370.3 38725042 13 14491562 14492406 Zonotrichia albicollis 44394 AAA|GTAAGTACCA...TGGACCTTACCA/AATGTATTAATC...TTCAG|ACA 2 1 95.399

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