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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
71043876 GT-AG 0 0.000235956538478 200 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 1 132676 132875 Entomophthora muscae 34485 CAG|GTAGCTATTA...GGGTACTGATTT/TGGGTACTGATT...TCAAG|GTT 2 1 15.564
71043877 GT-AG 0 1.844375563830291e-05 227 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 2 132965 133191 Entomophthora muscae 34485 TAG|GTAATCAATT...TTGACTTGAACA/CATGAATTCATC...TGTAG|AGA 1 1 21.017
71043878 GT-AG 0 0.0004478033946942 80 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 3 133280 133359 Entomophthora muscae 34485 TAC|GTAAGCTCTT...ATGTTATAAACT/TATAAACTAACT...ACCAG|ACC 2 1 26.409
71043879 GT-AG 0 2.2496989802909752e-05 44 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 4 133436 133479 Entomophthora muscae 34485 TAT|GTAAATCCCC...AGATTCTAAAAA/AAGATTCTAAAA...CTTAG|CTT 0 1 31.066
71043880 GT-AG 0 0.000781642378271 203 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 5 133505 133707 Entomophthora muscae 34485 ACT|GTGGCTATGC...GCTTCCCAAGCT/GAAATTGGGATT...GTAAG|ATA 1 1 32.598
71043881 GT-AG 0 1.000000099473604e-05 41 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 6 133742 133782 Entomophthora muscae 34485 AAG|GTTAGCCAAG...TGAATATTAACC/TGAATATTAACC...TATAG|GCT 2 1 34.681
71043882 GT-AG 0 0.0001023314269991 33 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 7 133839 133871 Entomophthora muscae 34485 CCA|GTATTAGAAG...ATAACCTCAAAT/GATAACCTCAAA...GCTAG|CCT 1 1 38.113
71043883 GT-AG 0 1.000000099473604e-05 40 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 8 133904 133943 Entomophthora muscae 34485 GCA|GTAAGTGCTT...CTATGCTAAGTT/TCTATGCTAAGT...TATAG|AAA 0 1 40.074
71043884 GT-AG 0 1.000000099473604e-05 33 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 9 134148 134180 Entomophthora muscae 34485 AGG|GTAAGGAGCA...CATCCGCTTACG/CATCCGCTTACG...AATAG|ACT 0 1 52.574
71043885 GT-AG 0 1.000000099473604e-05 34 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 10 134260 134293 Entomophthora muscae 34485 CAG|GTAATGCCGC...ATATCCTTGCCA/TTGCCACTTACA...TTTAG|AGC 1 1 57.414
71043886 GT-AG 0 1.000000099473604e-05 112 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 11 134409 134520 Entomophthora muscae 34485 AAG|GTAAGAAGCT...GATTTCTTGAAG/CCCTAATTGACT...CTAAG|CCG 2 1 64.461
71043887 GT-AG 0 1.000000099473604e-05 38 rna-gnl|WGS:QTSX|evm.model.scaffold_14.2_mrna 13363979 12 134918 134955 Entomophthora muscae 34485 AAA|GTAAGACATC...TACCTTTTACTC/CTTTTACTCACT...AATAG|GGA 0 1 88.787

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