I am looking for a in silico enzyme digestion program which I can input the enzyme name, cognite sequence, and the genome to be scanned against. the output will the size distribution of the resulting fragment, also a BED format file with fragment coordiate, like chrom, start, end etc. Anyone has such a program and would like to share with me. Thanks a lot!
Unconfigured Ad
Collapse
X
-
-
Hello,
This can be done with Biopieces (www.biopieces.org) using digest_seq and BamHI as an example:
To get a BED file:Code:read_fasta -i genome.fna | digest_seq -p GGATCC -c 1 | plot_lendist -k SEQ_LEN -x
Or to do both in one go:Code:read_fasta -i genome.fna | digest_seq -p GGATCC -c 1 | rename_keys -k SEQ_NAME,S_ID | write_bed -xo fragments.bed
Code:read_fasta -i genome.fna | digest_seq -p GGATCC -c 1 | plot_lendist -k SEQ_LEN -t post -o dist_plot.ps | rename_keys -k SEQ_NAME,S_ID | write_bed -xo fragments.bed
Restriction enzyme patterns and cut positions are found at REBASE http://rebase.neb.com - or by typing "rescan_seq --help"
Cheers,
Martin
-
-
You definitely should take a look at the remap tool from the EMBOSS package.
Cheers,
Adhemar
Comment
-
-
I have difficulty to run the command. I installed the packages in my desktop, and follow the instructions which listed in the web. I am not sure whether the code is sourced, and I run the test code, it seems nothing changed. Could you give more detailed information on how to install it and test it since I am a bench scientist, not that familiar with the command line program. Thanks
nexgen@nexgen-desktop:~/Desktop/biopieces$ bp_test
bp_test: command not found
Comment
-
-
Did you add the following section to your ~/.bashrc file:
ANDCode:# >>>>>>>>>>>>>>>>>>>>>>> Enabling Biopieces if installed <<<<<<<<<<<<<<<<<<<<<<< # Modify the below paths according to your settings. # If you have followed the installation step-by-step as described above, # the below should work just fine. export BP_DIR="$HOME/biopieces" # Directory where biopieces are installed export BP_DATA="$HOME/BP_DATA" # Contains genomic data etc. export BP_TMP="$HOME/tmp" # Required temporary directory. export BP_LOG="$HOME/BP_LOG" # Required log directory. if [ -f "$BP_DIR/bp_conf/bashrc" ]; then source "$BP_DIR/bp_conf/bashrc" fi # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
run the command
Code:source ~/.bashrc
Martin
Comment
-
-
Hi, I am confronting the same problem, in silico digestion for CCGG .
I have a file with hg19 and one line per chromosome sequence and I do :
Is it stupid ? I don t understand why this team have so different results ....Code:cat hg19.txt | sed "s/[COLOR="DarkRed"]CCGG[/COLOR]/\n/g" | awk '{l=length($1); mem[l]++;} END{for(i=0;i<=1000;i++){print mem[i]}}'
Here is my results for instance : I have 9975 time one nucleotide between 2 CCGG's
Any idea ?
Comment
-
Latest Articles
Collapse
-
by SEQadmin2
Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.
There is no single reason why many patients don’t respond to treatment as expected. Cancer is...-
Channel: Articles
Today, 05:17 AM -
-
by GATTACATLove this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
-
Channel: Articles
07-01-2026, 11:43 AM -
-
by SEQadmin2
I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.
Here are nine questions we think about, in roughly the order they matter, before...-
Channel: Articles
-
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, Today, 10:08 AM
|
0 responses
6 views
0 reactions
|
Last Post
by SEQadmin2
Today, 10:08 AM
|
||
|
Started by SEQadmin2, Yesterday, 11:05 AM
|
0 responses
8 views
0 reactions
|
Last Post
by SEQadmin2
Yesterday, 11:05 AM
|
||
|
Started by SEQadmin2, 07-02-2026, 11:08 AM
|
0 responses
31 views
0 reactions
|
Last Post
by SEQadmin2
07-02-2026, 11:08 AM
|
||
|
Started by SEQadmin2, 06-30-2026, 05:37 AM
|
0 responses
29 views
0 reactions
|
Last Post
by SEQadmin2
06-30-2026, 05:37 AM
|
Comment