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

✎ 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
148387477 GT-AG 0 1.000000099473604e-05 55 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 1 2017 2071 Pelomyxa schiedti 1580589 CTG|GTGTGTCAAT...GTGAACTCATTC/GGTGAACTCATT...TCTAG|TTT 0 1 11.616
148387478 GT-AG 0 0.0005791289139714 40 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 2 1898 1937 Pelomyxa schiedti 1580589 TGA|GTAATTTTTG...TACAACTAAACA/GTACAACTAAAC...CTAAG|AGG 1 1 18.266
148387479 GT-AG 0 0.0002303161635798 262 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 3 1439 1700 Pelomyxa schiedti 1580589 ATA|GTTGTTCTTA...TTGTTCTTATTT/GTTGTTCTTATT...TCCAG|TCG 0 1 34.848
148387480 GT-AG 0 8.723367897129714e-05 39 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 4 1293 1331 Pelomyxa schiedti 1580589 CAG|GTCTTTTAAC...AACAACTTAATA/AACTTAATAACC...AGTAG|ATT 2 1 43.855
148387481 GT-AG 0 8.983178802541365e-05 60 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 5 1150 1209 Pelomyxa schiedti 1580589 AAG|GTTTGCTTGT...GGTACCAAAAAT/GATTGCATCAGG...CAAAG|GTC 1 1 50.842
148387482 GT-AG 0 0.0002572495236309 54 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 6 901 954 Pelomyxa schiedti 1580589 CAA|GTAACGAGTT...GGGGCCTTTACA/TTACATCTCACC...CCCAG|ATT 1 1 67.256
148387483 GT-AG 0 3.255421491888194e-05 75 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 7 795 869 Pelomyxa schiedti 1580589 AAG|GTGTGTTAAC...TTTTCCTTCACA/TTTTCCTTCACA...CAAAG|CTT 2 1 69.865
148387484 GT-AG 0 0.0373048967674057 67 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 8 667 733 Pelomyxa schiedti 1580589 ACT|GTTGCTTTCT...CATCCTATGACA/ACAATTCTAATC...TGAAG|CTC 0 1 75.0
148387485 GT-AG 0 1.98663639593298e-05 47 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 9 580 626 Pelomyxa schiedti 1580589 AAG|GTGTAGTTCC...TGTACCCTAACA/TGTACCCTAACA...GTTAG|AAA 1 1 78.367
148387486 GT-AG 0 1.000000099473604e-05 47 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 10 448 494 Pelomyxa schiedti 1580589 CTG|GTAAGCACAC...CTCTCCTACAAT/CACCTACTCACC...CCTAG|TCA 2 1 85.522
148387487 GT-AG 0 0.0002451512553813 49 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 11 360 408 Pelomyxa schiedti 1580589 TGC|GTATGTGCCC...AACACCAAAAAT/AAAATACAAATC...TGTAG|ATA 2 1 88.805
148387488 GT-AG 0 0.0015640990634196 43 rna-gnl|WGS:JAHLWZ|Pelo_1_1 26741101 12 223 265 Pelomyxa schiedti 1580589 CTG|GTACCGATTC...TTTTCCTCGTCA/TCGTCACTCACT...AGTAG|AAC 0 1 96.717

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