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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
148095442 GT-AG 0 1.000000099473604e-05 520 rna-XM_009484624.1 26701916 2 1984 2503 Pelecanus crispus 36300 TAA|GTAAGTACTT...CATGTCTTCATC/TACTTTTTCATT...TACAG|GCA 2 1 3.07
148095443 GT-AG 0 0.0002950121637338 756 rna-XM_009484624.1 26701916 3 2610 3365 Pelecanus crispus 36300 CAG|GTACTTTAAA...GTTATTTTAAAT/TTTCTTTTTACT...GTCAG|CCA 0 1 8.682
148095444 GT-AG 0 0.0001113281584298 317 rna-XM_009484624.1 26701916 4 3444 3760 Pelecanus crispus 36300 AGT|GTAAGTTTAT...CTGACCTAAATA/AATTTTCTGACT...TACAG|GTT 0 1 12.811
148095445 GT-AG 1 95.03750650004544 1760 rna-XM_009484624.1 26701916 5 3865 5624 Pelecanus crispus 36300 TAA|GTATCCTGTT...AGTTCCTTATTG/TTTTGCTTCATC...TAAAG|ATA 2 1 18.317
148095446 GT-AG 0 1.4505520312906553e-05 1891 rna-XM_009484624.1 26701916 6 5691 7581 Pelecanus crispus 36300 AAG|GTTTGTATTA...GTGCATTTAACA/ATGATTTTCATT...AGCAG|GCC 2 1 21.81
148095447 GT-AG 0 1.000000099473604e-05 469 rna-XM_009484624.1 26701916 7 7643 8111 Pelecanus crispus 36300 AAG|GTAAAGTCTA...ATTGTATTATCT/AATTGTATTATC...TTAAG|CCA 0 1 25.04
148095448 GT-AG 0 1.083427648062418 783 rna-XM_009484624.1 26701916 8 8255 9037 Pelecanus crispus 36300 TAG|GTATCTCTTT...GACTTCTTGTTT/ATGGATATTACT...CTTAG|TGG 2 1 32.61
148095449 GT-AG 0 1.000000099473604e-05 768 rna-XM_009484624.1 26701916 9 9181 9948 Pelecanus crispus 36300 AAG|GTAAGGAATG...ATGTTCTTAGTT/GATTTTTTCAGT...TATAG|ATG 1 1 40.18
148095450 GT-AG 0 1.000000099473604e-05 1092 rna-XM_009484624.1 26701916 10 10065 11156 Pelecanus crispus 36300 GAT|GTAAGTGGCT...ATGTTATTAGCC/CTGTACGTTATT...TGTAG|GAA 0 1 46.321
148095451 GT-AG 0 1.000000099473604e-05 815 rna-XM_009484624.1 26701916 11 11241 12055 Pelecanus crispus 36300 GCG|GTGAATATAT...TTTTCCTGGATA/TTAATGCTAATT...TTCAG|CCA 0 1 50.768
148095452 GT-AG 0 0.0006116996852363 611 rna-XM_009484624.1 26701916 12 12171 12781 Pelecanus crispus 36300 CTG|GTATAGTTAC...ATGTCTTTCAAT/CAGATTCTAATA...TCTAG|ATT 1 1 56.855
148095453 GT-AG 0 0.0001100200865036 602 rna-XM_009484624.1 26701916 1 1307 1908 Pelecanus crispus 36300 TAG|GTATGTTAAC...TCTGTTCTATTC/CTCTGTTCTATT...TCTAG|TGG   0 2.012

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