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!
Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
-
Hello,
This can be done with Biopieces (www.biopieces.org) using digest_seq and BamHI as an example:
Code:read_fasta -i genome.fna | digest_seq -p GGATCC -c 1 | plot_lendist -k SEQ_LEN -x
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:
Code:# >>>>>>>>>>>>>>>>>>>>>>> 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 :
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 seqadmin
Spatial biology is an exciting field that encompasses a wide range of techniques and technologies aimed at mapping the organization and interactions of various biomolecules in their native environments. As this area of research progresses, new tools and methodologies are being introduced, accompanied by efforts to establish benchmarking standards and drive technological innovation.
3D Genomics
While spatial biology often involves studying proteins and RNAs in their...-
Channel: Articles
Yesterday, 07:30 PM -
-
by seqadmin
Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...-
Channel: Articles
12-16-2024, 07:57 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, 12-30-2024, 01:35 PM
|
0 responses
22 views
0 likes
|
Last Post
by seqadmin
12-30-2024, 01:35 PM
|
||
Started by seqadmin, 12-17-2024, 10:28 AM
|
0 responses
41 views
0 likes
|
Last Post
by seqadmin
12-17-2024, 10:28 AM
|
||
Started by seqadmin, 12-13-2024, 08:24 AM
|
0 responses
55 views
0 likes
|
Last Post
by seqadmin
12-13-2024, 08:24 AM
|
||
Started by seqadmin, 12-12-2024, 07:41 AM
|
0 responses
41 views
0 likes
|
Last Post
by seqadmin
12-12-2024, 07:41 AM
|
Comment