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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
95650737 GT-AG 0 1.000000099473604e-05 56 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 1 195585 195640 Hydnum rufescens 139363 TAC|GTAAGTCATC...GCGAGTTCAGCT/GGCGAGTTCAGC...CACAG|TTA 0 1 7.912
95650738 GT-AG 0 0.0001108431229507 55 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 2 195884 195938 Hydnum rufescens 139363 GCG|GTACGATGCC...TTCTTCTGAACC/TAGTTTCTAAAC...ACCAG|ATC 0 1 21.549
95650739 GC-AG 0 1.5865528709962958e-05 51 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 3 195996 196046 Hydnum rufescens 139363 AAT|GCAAGCACTG...CTGATATTAACG/CTGATATTAACG...CCTAG|TAT 0 1 24.747
95650740 GT-AG 0 1.000000099473604e-05 51 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 4 196120 196170 Hydnum rufescens 139363 ACG|GTTAGCGTTG...TGTGATTGAACG/ATGTGATTGAAC...CATAG|GTG 1 1 28.844
95650741 GT-AG 0 1.000000099473604e-05 52 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 5 196320 196371 Hydnum rufescens 139363 CAG|GTGTGGTCCC...TTTTCTTTATCA/CTTTTCTTTATC...TCTAG|GAC 0 1 37.205
95650742 GT-AG 0 1.7059846137354708e-05 59 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 6 196772 196830 Hydnum rufescens 139363 AGG|GTACTGTAGA...TCATCCTCATTT/CTCATCCTCATT...TTCAG|ATC 1 1 59.652
95650743 GT-AG 0 0.0305863810063324 52 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 7 196887 196938 Hydnum rufescens 139363 ACT|GTATGTCTTT...GAGCTCTAGATG/TCAATATTTACA...TCCAG|ACC 0 1 62.795
95650744 GT-AG 0 1.000000099473604e-05 65 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 8 197096 197160 Hydnum rufescens 139363 ATG|GTGAGTATGA...CCCACCTTCCAT/TTCTGCCCCACC...CTTAG|AAA 1 1 71.605
95650745 GT-AG 0 0.000419261301594 61 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 9 197270 197330 Hydnum rufescens 139363 GTC|GTACGTCAAC...ATCGTTTTACTT/AATCGTTTTACT...CACAG|TAC 2 1 77.722
95650746 GT-AG 0 1.000000099473604e-05 65 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 10 197471 197535 Hydnum rufescens 139363 ATG|GTGCGTGTAT...ACCATCTCAGTT/AACCATCTCAGT...CATAG|CCG 1 1 85.578
95650747 GT-AG 0 1.000000099473604e-05 60 rna-gnl|WGS:WIOR|BS47DRAFT_mRNA1335085 17869677 11 197565 197624 Hydnum rufescens 139363 CAA|GTAGGAGGAT...TACCGTTTGATG/TTGATGCTGACT...TCTAG|TTC 0 1 87.205

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