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)

10 rows where transcript_id = 8205964

✎ 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
43958669 GT-AG 0 3.950311353103075e-05 2894 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 1 2261849 2264742 Chloropsis hardwickii 667144 ACC|GTAAGTGCCT...TGTTTTTTATCT/GTGTTTTTTATC...TGTAG|CTA 0 1 7.216
43958670 GT-AG 0 3.615259643038995e-05 2265 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 2 2259431 2261695 Chloropsis hardwickii 667144 CAG|GTAACGCTTA...GTTATTTTGTCT/CTATATATCATC...CACAG|GAA 0 1 17.732
43958671 GT-AG 0 1.000000099473604e-05 84 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 3 2259139 2259222 Chloropsis hardwickii 667144 TTG|GTTTAAACAC...ATCTCCATGATC/CATGATCTTACA...TACAG|ATC 1 1 32.027
43958672 GT-AG 0 0.000122740251589 2807 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 4 2256231 2259037 Chloropsis hardwickii 667144 CCT|GTAAGTGTAA...ATGTCCTTATTG/TATGTCCTTATT...TTAAG|GGA 0 1 38.969
43958673 GT-AG 0 1.1302292302723024e-05 5990 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 5 2250173 2256162 Chloropsis hardwickii 667144 ATA|GTAAGTACTA...TTTTTTTTTTCC/GTTGTATTCAGA...AATAG|TGG 2 1 43.643
43958674 GT-AG 0 1.000000099473604e-05 1706 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 6 2248270 2249975 Chloropsis hardwickii 667144 AAG|GTAAGATTCA...GGTCTTTTATTA/TGGTCTTTTATT...TTCAG|AAA 1 1 57.182
43958675 GT-AG 0 0.0005328297042579 4640 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 7 2243494 2248133 Chloropsis hardwickii 667144 ACC|GTAAGTTTCT...ATGGTATTAATT/TCTCTTTTCATT...CTTAG|GGA 2 1 66.529
43958676 GT-AG 0 1.000000099473604e-05 19524 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 8 2223843 2243366 Chloropsis hardwickii 667144 ACT|GTGAGTCAAA...CTATCTGTATAT/TCGTGTCTGACT...TACAG|TGC 0 1 75.258
43958677 GT-AG 0 6.892342834016567e-05 8054 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 9 2215693 2223746 Chloropsis hardwickii 667144 AAG|GTATGTACCC...TCCAGTTTAACA/TCCAGTTTAACA...TGCAG|CAT 0 1 81.856
43958678 GT-AG 0 1.49161740781503e-05 98 rna-gnl|WGS:WEIW|CHLHAR_R02916_mrna 8205964 10 2215461 2215558 Chloropsis hardwickii 667144 GAG|GTAAATTATT...ATTTTCTTTTTT/GGGAAGTTAATT...TTCAG|GGA 2 1 91.065

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