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

✎ 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
182389659 GT-AG 0 1.840783061765065e-05 783 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 1 99355 100137 Serilophus lunatus 239386 TCT|GTAAGAATAA...ATTTTTTTATTT/AATTTTTTTATT...GACAG|ATC 0 1 10.978
182389660 GT-AG 0 1.000000099473604e-05 1004 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 2 100232 101235 Serilophus lunatus 239386 CAG|GTAGGACACA...CTGCTCTTACCT/TCTGCTCTTACC...TCCAG|ATG 1 1 17.232
182389661 GT-AG 0 1.000000099473604e-05 358 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 3 101302 101659 Serilophus lunatus 239386 AAG|GTAAAAGACA...TTTGCATTATCC/CAAATTCTAAAA...TTCAG|GGA 1 1 21.623
182389662 GT-AG 0 1.000000099473604e-05 1327 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 4 101812 103138 Serilophus lunatus 239386 AAG|GTGAGTGTCT...AGGTTTTCAAAT/GAGGTTTTCAAA...TAAAG|GTT 0 1 31.737
182389663 GT-AG 0 1.2530879427803216e-05 528 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 5 103346 103873 Serilophus lunatus 239386 TCA|GTAAGTATTT...GGTTTGTTCATG/GGTTTGTTCATG...TTCAG|AAA 0 1 45.509
182389664 GT-AG 0 1.000000099473604e-05 645 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 6 103979 104623 Serilophus lunatus 239386 GAG|GTAAGCTAAA...TACTTTTCAGTT/GCTATCCTTACC...TGCAG|GTT 0 1 52.495
182389665 GT-AG 0 1.000000099473604e-05 566 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 7 104714 105279 Serilophus lunatus 239386 CTG|GTAAGACTAA...TTTTCCTTTCTG/ATACGTCTCATG...TTTAG|GAG 0 1 58.483
182389666 GT-AG 0 6.989607415534867e-05 1153 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 8 105462 106614 Serilophus lunatus 239386 CAG|GTAATCATTT...TTGCTTTTAAAT/ATTTTACTAACA...TTTAG|GCT 2 1 70.592
182389667 GT-AG 0 1.000000099473604e-05 508 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 9 106709 107216 Serilophus lunatus 239386 GAG|GTAAGTCTTG...GGTGCTTTTTCT/CAGGTGTTCAGT...TACAG|AAC 0 1 76.846
182389668 GT-AG 0 1.000000099473604e-05 1037 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 10 107274 108310 Serilophus lunatus 239386 AAG|GTAAGTCCTC...ATGAATTTAACT/ATGAATTTAACT...CATAG|GAT 0 1 80.639
182389669 GT-AG 0 1.000000099473604e-05 337 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 11 108388 108724 Serilophus lunatus 239386 AAG|GTAAGAATCT...TGTTTTTTGTTC/GTACTTGTCACT...GTCAG|TCA 2 1 85.762
182389670 GT-AG 0 1.000000099473604e-05 1563 rna-gnl|WGS:VXBA|SERLUN_R08692_mrna 32656337 12 108862 110424 Serilophus lunatus 239386 ACG|GTAAGTTAGG...AAAGTTTCGACT/AAAGTTTCGACT...TTCAG|ATC 1 1 94.877

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