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

✎ 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
61577788 GT-AG 0 3.571435314019636e-05 294 rna-XM_047061016.1 11121923 1 5130935 5131228 Dermatophagoides farinae 6954 CAA|GTAAGTCTTT...AATTTATTAATT/AATTTATTAATT...CATAG|ATT 1 1 12.785
61577789 GT-AG 0 1.000000099473604e-05 72 rna-XM_047061016.1 11121923 2 5131406 5131477 Dermatophagoides farinae 6954 TAG|GTAATGTATC...TTTGTTTTATTT/TTTTTCTTCATT...AATAG|TGC 1 1 15.438
61577790 GT-AG 0 1.000000099473604e-05 11823 rna-XM_047061016.1 11121923 3 5131843 5143665 Dermatophagoides farinae 6954 ACG|GTGAGTTGTG...TTTTCTTTCTCT/TTTTTTCTAATG...TACAG|CAA 0 1 20.908
61577791 GT-AG 0 0.2227866530750964 68 rna-XM_047061016.1 11121923 4 5144109 5144176 Dermatophagoides farinae 6954 TAA|GTATGTTTTT...TCCTCTTTAGAT/GAATTTCTAACT...TTTAG|ATG 2 1 27.548
61577792 GT-AG 0 0.0003983502899927 88 rna-XM_047061016.1 11121923 5 5144307 5144394 Dermatophagoides farinae 6954 ACG|GTATGTGTGT...TTTTTTTTTGCA/TCAATTTTCAAT...TATAG|CTC 0 1 29.496
61577793 GT-AG 0 0.000131974504391 7002 rna-XM_047061016.1 11121923 6 5144561 5151562 Dermatophagoides farinae 6954 CAC|GTAAGTTGTC...ACTTCGTTAATT/ACTTCGTTAATT...TTTAG|ATT 1 1 31.984
61577794 GT-AG 0 1.000000099473604e-05 63 rna-XM_047061016.1 11121923 7 5151848 5151910 Dermatophagoides farinae 6954 AAG|GTAAGCGAAA...GTTATTTTAAAT/TCAATATTAATT...ATTAG|TTC 1 1 36.256
61577795 GT-AG 0 0.0001617414713259 63 rna-XM_047061016.1 11121923 8 5152166 5152228 Dermatophagoides farinae 6954 ATG|GTAATTATTT...AATTTTTTAATA/AATTTTTTAATA...AACAG|TAT 1 1 40.078
61577796 GT-AG 0 1.747808671298313e-05 72 rna-XM_047061016.1 11121923 9 5153515 5153586 Dermatophagoides farinae 6954 AAT|GTAATTATAT...GTTTTCTCATTC/TGTTTTCTCATT...ATTAG|GGA 0 1 59.353
61577797 GT-AG 0 1.000000099473604e-05 64 rna-XM_047061016.1 11121923 10 5156095 5156158 Dermatophagoides farinae 6954 AGG|GTGAGTTCAA...CTTTCTTCGATA/AATTTTTTCAAT...TTTAG|CAA 0 1 96.942
61577798 GT-AG 0 0.0048991486261725 67 rna-XM_047061016.1 11121923 11 5156234 5156300 Dermatophagoides farinae 6954 CAG|GTATAATTTT...GTTTTTTTGAAA/AATTTTCTAAAT...TCTAG|CTA 0 1 98.067

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