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)

11 rows where transcript_id = 864958

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
4311485 GT-AG 0 1.000000099473604e-05 265 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 1 88069 88333 Aegithalos caudatus 73327 GAC|GTGAGTATGG...TCAGCTCCAACA/ACCTGTCCCACC...TGCAG|CTG 0 1 5.628
4311486 GT-AG 0 1.000000099473604e-05 120 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 2 87860 87979 Aegithalos caudatus 73327 CAG|GTACAGCAAG...ATATGCTGAGCT/GATATGCTGAGC...CCCAG|TTT 2 1 12.049
4311487 GT-AG 0 1.000000099473604e-05 134 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 3 87573 87706 Aegithalos caudatus 73327 CAA|GTGAGTGTGG...AGCGCCGTCTCC/AGGGGTGGCACG...CGCAG|TCT 2 1 23.088
4311488 GT-AG 0 1.000000099473604e-05 3150 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 4 84299 87448 Aegithalos caudatus 73327 ACG|GTGAGTGATG...CAACCTCTGACA/CAACCTCTGACA...TACAG|GGC 0 1 32.035
4311489 GT-AG 0 1.000000099473604e-05 975 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 5 83285 84259 Aegithalos caudatus 73327 AAG|GTAAATAGCT...TGTCCCTTGCTG/CCACCAGTAACT...TCCAG|AGC 0 1 34.848
4311490 GT-AG 0 1.000000099473604e-05 1106 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 6 82149 83254 Aegithalos caudatus 73327 GAA|GTAAGGACAT...TGTCTCTTTGCT/CGGCTGCTCACC...TGCAG|GGC 0 1 37.013
4311491 GT-AG 0 1.000000099473604e-05 197 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 7 81895 82091 Aegithalos caudatus 73327 AAG|GTGAGGGCTG...AGGTTCTGTGCT/TCTGTGCTGAGG...CCCAG|GAC 0 1 41.126
4311492 GT-AG 0 1.000000099473604e-05 117 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 8 81697 81813 Aegithalos caudatus 73327 AAG|GTGAGGGCAC...GAGGCCTTTCCC/GAACTGCTGAGC...TCCAG|CAA 0 1 46.97
4311493 GT-AG 0 1.000000099473604e-05 2327 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 9 79222 81548 Aegithalos caudatus 73327 AGG|GTAGGAGAGG...CCCGCCGTGACC/TGCCTCCTCAGT...GGCAG|GGC 1 1 57.648
4311494 GT-AG 0 1.000000099473604e-05 77 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 10 78998 79074 Aegithalos caudatus 73327 AAG|GTGGGTTCTG...TGCCCCCTGACC/CTGACCCTCACC...TGCAG|TGG 1 1 68.254
4311495 GT-AG 0 1.000000099473604e-05 298 rna-gnl|WGS:WEIU|AEGCAU_R06756_mrna 864958 11 78540 78837 Aegithalos caudatus 73327 GTT|GTGAGTAGCA...CGTCCCTTGCTC/TGAGGTGTGACC...CTCAG|CAC 2 1 79.798

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