getXSQ v0.1 for SOLiD 5500 instrument
May 10
Applied Biosystems, LANGEBIO, Life Technologies, Linux, SOLiD, SOLiD 5500 series, bioinformatica, bioinformatics linkedin No Comments
if you want to copy your results from your SOLiD 5500 instrument to Server Storage you could use following bash script
There is a basic script , the main idea is that you can convert your XSQ files to colorspace, quality and fastq (ECC) values.
My current getXSQ WorkFlow:
S5 means SOLiD 5500
SS means Server Storage
SOLiD5500 –> scan xsq results(S5) –> copy xsq results to server storage(S5) –> convert xsq results to csfasta/qual/fastq (SS)–> minimal reads counting(SS)
#!/bin/bash # GetXSQ v0.1 allows to copy from SOLiD 5500 instrument results to Custom Server Storage # by Jacob Israel Cervantes Luevano jacobnix@gmail.com # GetXSQ is free software; you can redistribute it # and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; # either version 3 of the License, or (at your option) any later version. # GetXSQ is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with GetXSQ; if not, write to the Free Software Foundation, # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA CWD=$PWD storage=$2 user=$4 remotedir=$6 echo "getXSQ.sh allows to copy from SOLiD 5500 instrument results to Custom Server Storage" echo "Copyright 2012 by Jacob Israel Cervantes Luevano" echo "usage: getXSQ.sh --storage ip_address --user remote_username --remotedir dir" for XSQ in `tree -i -f | grep xsq` do xsqFile=`readlink -f $XSQ` #printf "`$xsqFile` \n" printf "copying xsq file $xsqFile to Storage $storage \n" scp $xsqFile $user@$storage:$remotedir printf "xsq file $xsqFile copied successfully !!\n" #convert to csfasta/qual/fastq from xsq @ storage done -- INSERT --
This script is partially finished if you want to help ..email me
RSS
Twitter
Facebook
my Linkedin
Google Profile
Email








































User Comments