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)

10 rows where transcript_id = 24983443

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
137382693 GT-AG 0 1.000000099473604e-05 84 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 2 1034203 1034286 Ophiocordyceps polyrhachis-furcata 1330020 TGG|GTGAGTATAG...CCTGCCGTACCT/GTTGAGCTGACG...GCTAG|ATC 2 1 15.131
137382694 GT-AG 0 1.000000099473604e-05 81 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 3 1034956 1035036 Ophiocordyceps polyrhachis-furcata 1330020 ATC|GTGAACGCGC...ACTCCCCGAACC/ACCCCTCTCACG...AATAG|CGG 2 1 30.539
137382695 GT-AG 0 0.0004645310293661 70 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 4 1035156 1035225 Ophiocordyceps polyrhachis-furcata 1330020 CCA|GTGTCAGCGG...AATACTTGGACG/TGGACGCTGACA...AAAAG|CCT 1 1 33.28
137382696 GT-AG 0 1.000000099473604e-05 53 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 5 1037140 1037192 Ophiocordyceps polyrhachis-furcata 1330020 AGG|GTTGATGATG...AGAGTTTTGTGT/GGGATGTAGAGT...TTCAG|ATG 1 1 77.361
137382697 GT-AG 0 1.000000099473604e-05 69 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 6 1037262 1037330 Ophiocordyceps polyrhachis-furcata 1330020 TGC|GTGAAGGCTT...ATGCCTTTAGTA/TATGCCTTTAGT...TAAAG|ATG 1 1 78.95
137382698 GT-AG 0 0.0001211774287362 30 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 7 1037411 1037440 Ophiocordyceps polyrhachis-furcata 1330020 AAC|GTCACCCTAA...AAGGCTAAATAA/GGCTAAATAAAA...CAAAG|CCA 0 1 80.792
137382699 GT-AG 0 0.003956629234989 32 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 8 1037580 1037611 Ophiocordyceps polyrhachis-furcata 1330020 AAG|GTACTCTTGT...TTTCCCATCATC/TAGTTTCCCATC...ACAAG|AGA 1 1 83.994
137382700 GT-AG 0 0.0002206396748987 104 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 9 1037945 1038048 Ophiocordyceps polyrhachis-furcata 1330020 GTC|GTGCGTTTCC...GTCGTCGTGATG/ATGATGATGATG...GAAAG|AGC 1 1 91.663
137382701 GT-AG 0 8.501175510731545e-05 156 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 10 1038208 1038363 Ophiocordyceps polyrhachis-furcata 1330020 TGC|GTCTCGATCT...AAGAAGAAAACG/AAGAAGAAAACG...CCAAG|GAC 1 1 95.325
137386408 GT-AG 0 1.000000099473604e-05 65 rna-gnl|WGS:LKCN|L249_1992-mRNA-1_mrna 24983443 1 1033635 1033699 Ophiocordyceps polyrhachis-furcata 1330020 GGT|GTGAGAGTCT...ATCCCCTCGACC/CCCCAGCTGACG...ACAAG|AAA   0 4.307

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