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)

13 rows where transcript_id = 34009280

✎ 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
190420560 GT-AG 0 4.243949569873451e-05 89 rna-XM_035352682.1 34009280 1 10924 11012 Stegodyphus dumicola 202533 GAA|GTAAATATTT...TGTTTCTAATCC/TTGTTTCTAATC...TTTAG|GTG 0 1 2.006
190420561 GT-AG 0 0.0001761848918319 6914 rna-XM_035352682.1 34009280 2 11154 18067 Stegodyphus dumicola 202533 GAG|GTACATTGTA...AAGATCTAAATA/TTGTGGTTCATC...TTTAG|AGA 0 1 9.259
190420562 GT-AG 0 0.0003551441801755 11714 rna-XM_035352682.1 34009280 3 18143 29856 Stegodyphus dumicola 202533 AAG|GTAATCTTTT...GTCTGCTTAGTC/ATGATTCTCATT...TCTAG|GAA 0 1 13.117
190420563 GT-AG 0 0.0034357637930618 6725 rna-XM_035352682.1 34009280 4 29912 36636 Stegodyphus dumicola 202533 ATG|GTATTTATCA...CTATTCTAAATT/TTTTTTTTCATT...AATAG|TTG 1 1 15.947
190420564 GT-AG 0 1.000000099473604e-05 5199 rna-XM_035352682.1 34009280 5 36689 41887 Stegodyphus dumicola 202533 GAG|GTAAGTGTTA...GTTATTTTATTT/TTATATTTCATT...ATCAG|GGA 2 1 18.621
190420565 GT-AG 0 1.000000099473604e-05 16732 rna-XM_035352682.1 34009280 6 42024 58755 Stegodyphus dumicola 202533 ATG|GTAAGTAACT...TTATTATTAATA/TAGTTGCTGATT...TTTAG|CAA 0 1 25.617
190420566 GT-AG 0 0.0115878806077458 81 rna-XM_035352682.1 34009280 7 58801 58881 Stegodyphus dumicola 202533 GTG|GTATGTATTG...TATGTTTTAATG/TATGTTTTAATG...TTCAG|TGC 0 1 27.932
190420567 GT-AG 0 0.0185540710175663 681 rna-XM_035352682.1 34009280 8 58913 59593 Stegodyphus dumicola 202533 AAG|GTATGCTGGA...TTTGCATTAATC/TCAAATTTCATC...GTTAG|CAA 1 1 29.527
190420568 GT-AG 0 5.920105574431189e-05 10173 rna-XM_035352682.1 34009280 9 59731 69903 Stegodyphus dumicola 202533 ATG|GTACTTAATT...AATATTTTATCG/AAATATTTTATC...TCTAG|GAC 0 1 36.574
190420569 GT-AG 0 1.000000099473604e-05 4813 rna-XM_035352682.1 34009280 10 69967 74779 Stegodyphus dumicola 202533 CAG|GTGAGTATTT...TACATTTTATCT/ACTTTTGTGACC...ATTAG|ACG 0 1 39.815
190420570 GT-AG 0 0.0024371303326294 1701 rna-XM_035352682.1 34009280 11 75005 76705 Stegodyphus dumicola 202533 CAG|GTATATTAAT...TTTTTCTTTTTT/TATGATTTAATA...GAAAG|CCT 0 1 51.389
190420571 GT-AG 0 1.000000099473604e-05 1533 rna-XM_035352682.1 34009280 12 76781 78313 Stegodyphus dumicola 202533 GAA|GTGAGCTACT...ATGTACTTGATT/CCAATTTTTATT...TTTAG|TCT 0 1 55.247
190420572 GT-AG 0 1.3260988000972615e-05 5102 rna-XM_035352682.1 34009280 13 78531 83632 Stegodyphus dumicola 202533 CAG|GTATTGGCTA...TAGTGCTTGAAT/AAAATAATTATT...TTTAG|AAA 1 1 66.409

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