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

✎ 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
163024887 GT-AG 0 1.000000099473604e-05 742 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 1 84909 85650 Prunella fulvescens 670355 CAG|GTAAGAAAGG...GCTCCCTTTGTT/GTGAGCATCACT...CCTAG|ACC 1 1 4.707
163024888 GT-AG 0 1.000000099473604e-05 826 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 2 85712 86537 Prunella fulvescens 670355 AGT|GTAAGTGAAC...AGTCTCTTATTG/ATGTTTCTCAGT...TTCAG|TGC 2 1 8.084
163024889 GT-AG 0 1.352818323854464e-05 830 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 3 86671 87500 Prunella fulvescens 670355 CTG|GTAGGCAGTG...CCTGTCTAAATA/CTAGTTCTGACC...CACAG|CCC 0 1 15.449
163024890 GT-AG 0 1.000000099473604e-05 598 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 4 87716 88313 Prunella fulvescens 670355 AAA|GTAAGGAAGA...CTTGCCTTTTCC/TTTGCTGTCACT...TCTAG|TTT 2 1 27.353
163024891 GT-AG 0 0.1781058164049019 161 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 5 88460 88620 Prunella fulvescens 670355 TTT|GTCTCTGTGG...ATCAGTTTAATG/ATCAGTTTAATG...GGCAG|CTG 1 1 35.437
163024892 GT-AG 0 2.146991600274633e-05 778 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 6 88715 89492 Prunella fulvescens 670355 AAG|GTAAGTTCCA...AGTGCTTTAAAA/CAGTGCTTTAAA...CCCAG|TAA 2 1 40.642
163024893 GT-AG 0 1.000000099473604e-05 856 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 7 89623 90478 Prunella fulvescens 670355 TGG|GTGAGCTCAC...CTGTCTTTAAAT/TATGTATTAATT...TACAG|TCA 0 1 47.841
163024894 GT-AG 0 1.7555204285682534e-05 116 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 8 90694 90809 Prunella fulvescens 670355 AGA|GTAAGTAGTG...GCTCCCTTGCCT/CCGTGGTTCAGG...TCCAG|GTT 2 1 59.745
163024895 GT-AG 0 1.000000099473604e-05 805 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 9 90947 91751 Prunella fulvescens 670355 TAG|GTGCAAAGCC...CCTGCTCTAATA/CCTGCTCTAATA...GCAAG|AGG 1 1 67.331
163024896 GT-AG 0 1.000000099473604e-05 159 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 10 91846 92004 Prunella fulvescens 670355 AGG|GTGAGCAATT...GTCATTTTGATG/GCTCTACTAACA...GTCAG|AAT 2 1 72.536
163024897 GT-AG 0 1.000000099473604e-05 632 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 11 92144 92775 Prunella fulvescens 670355 TAC|GTGAGTACAC...TTGCCCTTATCT/TTTGCCCTTATC...TTCAG|CTG 0 1 80.233
163024898 GT-AG 0 5.481423815173273e-05 508 rna-gnl|WGS:VZTP|PRUFUL_R02243_mrna 29247652 12 93000 93507 Prunella fulvescens 670355 GAA|GTAAGCTCCA...GCAGGATTAATT/GCAGGATTAATT...TGCAG|ATT 2 1 92.636

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