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

✎ 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
197323461 GT-AG 0 1.000000099473604e-05 73 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 1 12638 12710 Thamnocephalis sphaerospora 78915 CAG|GTGGAGTGAA...CTTACGTTGGTA/GGTATGCTCACG...TATAG|TGG 1 1 10.096
197323462 GT-AG 0 5.714931188039656e-05 81 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 2 12952 13032 Thamnocephalis sphaerospora 78915 GCG|GTAGGCATAA...ATATGCATGACC/GGTCGACTAACC...AACAG|ACA 2 1 24.492
197323463 GT-AG 0 1.000000099473604e-05 57 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 3 13190 13246 Thamnocephalis sphaerospora 78915 CAG|GTGATCATTG...CTTGCATTGCTG/GCATTGCTGACG...GTCAG|TTG 0 1 33.871
197323464 GT-AG 0 0.0102697828082392 71 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 4 13382 13452 Thamnocephalis sphaerospora 78915 TGT|GTAGGCTACA...CATTTCTAAACA/CCATTTCTAAAC...ATTAG|ACC 0 1 41.935
197323465 GT-AG 0 1.000000099473604e-05 65 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 5 13578 13642 Thamnocephalis sphaerospora 78915 AAA|GTGCGTTGGC...ATTTCTGTAGAA/AGAAAGCTAACG...GCCAG|GCG 2 1 49.403
197323466 GT-AG 0 1.000000099473604e-05 76 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 6 13698 13773 Thamnocephalis sphaerospora 78915 GCA|GTGAGTCTAC...CGCGCGTTGACG/TGTGTTCTCACC...CATAG|GCC 0 1 52.688
197323467 GT-AG 0 1.2331003617723225e-05 71 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 7 13855 13925 Thamnocephalis sphaerospora 78915 AAG|GTAGCGCCAT...CTCGTCATACCG/ACATCGCTCACA...ACTAG|ACA 0 1 57.527
197323468 GT-AG 0 0.0001075891153739 60 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 8 14071 14130 Thamnocephalis sphaerospora 78915 GCG|GTACGTTGGC...TATTGCCTAACA/TATTGCCTAACA...TGCAG|ATA 1 1 66.189
197323469 GT-AG 0 1.000000099473604e-05 68 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 9 14324 14391 Thamnocephalis sphaerospora 78915 CCG|GTGCGTTCAT...CTCACGTCAATG/GAGATGCTCACG...GTTAG|CAT 2 1 77.718
197323470 GT-AG 0 1.000000099473604e-05 63 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 10 14615 14677 Thamnocephalis sphaerospora 78915 GTG|GTAAGCGCTA...CGATCTGTGATG/ATGAAGCTAACA...GCTAG|CTG 0 1 91.039
197323471 GT-AG 0 0.0001813736859605 74 rna-gnl|WGS:QUVU|THASP1DRAFT_mRNA27011 35055963 11 14812 14885 Thamnocephalis sphaerospora 78915 TAG|GTACGTTTAT...TGATCTTTCTCT/CATAGGCTGATC...CATAG|TGC 2 1 99.044

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