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

✎ 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
88330999 GT-AG 0 1.000000099473604e-05 464 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 1 1025381 1025844 Grallaria varia 117165 AGG|GTGAGGGTCT...AGTCCTTTATCT/CAGTCCTTTATC...TCCAG|AAT 0 1 7.26
88331000 GT-AG 0 1.000000099473604e-05 754 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 2 1024522 1025275 Grallaria varia 117165 AAG|GTAGGAAAGC...GTTTCTTTGTTT/CTTTTTTGGACT...CCTAG|ATG 0 1 15.457
88331001 GT-AG 0 1.000000099473604e-05 402 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 3 1024021 1024422 Grallaria varia 117165 AAG|GTATGGACAT...AGTCCTGTGATA/GTAATATTTACT...TTCAG|GAA 0 1 23.185
88331002 GT-AG 0 2.302147239919023e-05 927 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 4 1022995 1023921 Grallaria varia 117165 TCA|GTAAGTACAT...TTGGCCTTGTCT/CTTGTCTACAGA...TCCAG|GAA 0 1 30.913
88331003 GT-AG 0 1.000000099473604e-05 163 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 5 1022733 1022895 Grallaria varia 117165 CAG|GTTAGTTCTC...GAAACCCTGACT/TCTCTCCTGACA...CTCAG|AAG 0 1 38.642
88331004 GT-AG 0 3.7344571237124606e-05 223 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 6 1022411 1022633 Grallaria varia 117165 CAT|GTAAGTCCTT...TTTTCCTAAGCA/CTTTTCCTAAGC...AACAG|CAA 0 1 46.37
88331005 GT-AG 0 1.000000099473604e-05 933 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 7 1021379 1022311 Grallaria varia 117165 AAT|GTAAGACTGT...TTGGCCTTCTCT/TGAAATTTAATC...TGCAG|AGG 0 1 54.098
88331006 GT-AG 0 1.000000099473604e-05 1333 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 8 1019947 1021279 Grallaria varia 117165 AAG|GTAAATGTCT...AAGGTCTTTTCC/TTCCAGCTCATT...TTCAG|CAA 0 1 61.827
88331007 GT-AG 0 1.000000099473604e-05 1054 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 9 1018797 1019850 Grallaria varia 117165 AAG|GTGAGCAACT...AGCACCCTGACC/AGCACCCTGACC...TGCAG|GAC 0 1 69.321
88331008 GT-AG 0 1.000000099473604e-05 698 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 10 1017897 1018594 Grallaria varia 117165 CAG|GTAATAAAAA...TGTGGTTTGATC/TGGGATTTCATC...GCCAG|GCA 1 1 85.09
88331009 GT-AG 0 1.000000099473604e-05 227 rna-gnl|WGS:VWZG|GRAVAR_R01681_mrna 16613762 11 1017538 1017764 Grallaria varia 117165 CAG|GTAATATTTT...GCTCCCTGTGCA/AATGAACACATC...TACAG|AAA 1 1 95.394

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