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

✎ 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
142235720 GT-AG 0 2.765284092555186e-05 7865 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 1 632424 640288 Pachyramphus minor 369605 GAG|GTAAGCTACA...ATTTCCTTTCCC/TCAAAATTTATT...TAAAG|GTT 2 1 9.874
142235721 GT-AG 0 1.000000099473604e-05 921 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 2 631409 632329 Pachyramphus minor 369605 AAG|GTGAGCAGTG...TTCATTTTACTG/ATTTTACTGACT...CCTAG|GGC 0 1 16.103
142235722 GT-AG 0 1.000000099473604e-05 512 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 3 630807 631318 Pachyramphus minor 369605 CAT|GTAAGTAGAT...GCCTCTCTAATC/GCCTCTCTAATC...TCCAG|GGT 0 1 22.068
142235723 GT-AG 0 0.0064037297536152 4551 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 4 626179 630729 Pachyramphus minor 369605 AGT|GTAAGCTTCT...AGCTCCTTTACA/AGCTCCTTTACA...CCTAG|GAC 2 1 27.17
142235724 GT-AG 0 1.000000099473604e-05 2779 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 5 623308 626086 Pachyramphus minor 369605 TAG|GTAGGAAATT...ATGCTTTTCTCT/CAGGATATAAAA...TGCAG|ATA 1 1 33.267
142235725 GT-AG 0 1.000000099473604e-05 2043 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 6 621212 623254 Pachyramphus minor 369605 GAG|GTGAGTGTTC...CCTTTCCTAACT/CCTTTCCTAACT...TCCAG|GAA 0 1 36.779
142235726 GT-AG 0 1.000000099473604e-05 906 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 7 620211 621116 Pachyramphus minor 369605 AAG|GTAAGGCAGC...CTCTTCTTGCTT/TAGTGTTCTACT...TTTAG|GGA 2 1 43.075
142235727 GT-AG 0 1.000000099473604e-05 1262 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 8 618855 620116 Pachyramphus minor 369605 GAG|GTGAGTGACC...GAAACATTAGAC/ACTTGGCTGATA...TCAAG|GAG 0 1 49.304
142235728 GT-AG 0 1.000000099473604e-05 724 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 9 617952 618675 Pachyramphus minor 369605 GAG|GTAAAGTGGA...TCGTTCTTTGCT/GGAATGGTCATC...AACAG|GAT 2 1 61.166
142235729 GT-AG 0 0.0004486020293504 1784 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 10 616035 617818 Pachyramphus minor 369605 AAG|GTATTTCCTC...CCATTCTTGTTC/CCAGTTTTCAGC...TTCAG|GCT 0 1 69.98
142235730 GT-AG 0 1.000000099473604e-05 1965 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 11 613925 615889 Pachyramphus minor 369605 GAA|GTAAGTCAAT...TGTCCCATCACA/ATCACACTTACA...CTCAG|AGT 1 1 79.589
142235731 GT-AG 0 4.272104827550564e-05 587 rna-gnl|WGS:VYXB|PACMIN_R11480_mrna 25713764 12 613188 613774 Pachyramphus minor 369605 ACA|GTAGGTATCA...CTGACCTTTCTA/AGAGTGCTGACC...TTCAG|TGA 1 1 89.529

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