<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/36603?offset=940</link>
	<atom:link href="https://bioinformaticsonline.com/related/36603?offset=940" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/12995/national-center-for-bioinformatics-ncb</guid>
  <pubDate>Wed, 23 Jul 2014 14:10:49 -0500</pubDate>
  <link></link>
  <title><![CDATA[National Center for Bioinformatics (NCB)]]></title>
  <description><![CDATA[
<p>NCB is offering M.Phil and Ph.D programs in the area of Bioinformatics. The major goal of NCB is to promote quality training and research in the area of Bioinformatics. Bioinformatics originated as a cross-disciplinary field as the need for computational sections to research problem raised in biomedicine. </p>

<p>More at http://ncb.qau.edu.pk/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/36502/creating-conda-environment-for-python27</guid>
	<pubDate>Mon, 07 May 2018 08:56:52 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/36502/creating-conda-environment-for-python27</link>
	<title><![CDATA[Creating conda environment for python2.7]]></title>
	<description><![CDATA[<p>TIP: By default, environments are installed into the&nbsp;<code><span>envs</span></code>&nbsp;directory in your conda directory. Run&nbsp;<code><span>conda</span>&nbsp;<span>create</span>&nbsp;<span>--help</span></code>&nbsp;for information on specifying a different path.</p><p>Use the Terminal or an Anaconda Prompt for the following steps.</p><ol>
<li>
<p>To create an environment:</p>
<div>
<div>
<pre><span></span><span>conda</span> <span>create</span> <span>--</span><span>name</span> <span>myenv</span>
</pre>
</div>
</div>
<p>NOTE: Replace&nbsp;<code><span>myenv</span></code>&nbsp;with the environment name.</p>
</li>
<li>
<p>When conda asks you to proceed, type&nbsp;<code><span>y</span></code>:</p>
<div>
<div>
<pre><span></span>proceed ([y]/n)?
</pre>
</div>
</div>
</li>
</ol><p>This creates the myenv environment in&nbsp;<code><span>/envs/</span></code>. This environment uses the same version of Python that you are currently using, because you did not specify a version.</p><p>To create an environment with a specific version of Python:</p><div><div><pre><span></span>conda create -n myenv <span>python</span><span>=</span><span>3</span>.4
</pre></div></div><p>To create an environment with a specific package:</p><div><div><pre><span></span>conda create -n myenv scipy
</pre></div></div><p>OR:</p><div><div><pre><span></span>conda create -n myenv python
conda install -n myenv scipy
</pre></div></div><p>To create an environment with a specific version of a package:</p><div><div><pre><span></span>conda create -n myenv <span>scipy</span><span>=</span><span>0</span>.15.0
</pre></div></div><p>OR:</p><div><div><pre><span></span>conda create -n myenv python
conda install -n myenv <span>scipy</span><span>=</span><span>0</span>.15.0
</pre></div></div><p>To create an environment with a specific version of Python and multiple packages:</p><div><div><pre><span></span>conda create -n myenv <span>python</span><span>=</span><span>3</span>.4 <span>scipy</span><span>=</span><span>0</span>.15.0 astroid babel
</pre></div></div><p>TIP: Install all the programs that you want in this environment at the same time. Installing 1 program at a time can lead to dependency conflicts.</p><p>To automatically install pip or another program every time a new environment is created, add the default programs to the&nbsp;<a href="https://conda.io/docs/user-guide/configuration/use-condarc.html#config-add-default-pkgs">create_default_packages</a>&nbsp;section of your&nbsp;<code><span>.condarc</span></code>&nbsp;configuration file. The default packages are installed every time you create a new environment. If you do not want the default packages installed in a particular environment, use the&nbsp;<code><span>--no-default-packages</span></code>&nbsp;flag:</p><div><div><pre><span></span>conda create --no-default-packages -n myenv python
</pre></div></div><p>TIP: You can add much more to the&nbsp;<code><span>conda</span>&nbsp;<span>create</span></code>&nbsp;command. For details, run&nbsp;<code><span>conda</span>&nbsp;<span>create</span>&nbsp;<span>--help</span></code>.</p><p>➜ redundans git:(master) ✗ conda create --name py27 python=2.7<br />Solving environment: done</p><p><br />==&gt; WARNING: A newer version of conda exists. &lt;==<br /> current version: 4.5.0<br /> latest version: 4.5.2</p><p>Please update conda by running</p><p>$ conda update -n base conda</p><p>&nbsp;</p><p>## Package Plan ##</p><p>environment location: /home/urbe/anaconda3/envs/py27</p><p>added / updated specs: <br /> - python=2.7</p><p><br />The following packages will be downloaded:</p><p>package | build<br /> ---------------------------|-----------------<br /> wheel-0.31.0 | py27_0 61 KB<br /> python-2.7.15 | h1571d57_0 12.1 MB<br /> certifi-2018.4.16 | py27_0 142 KB<br /> sqlite-3.23.1 | he433501_0 1.5 MB<br /> setuptools-39.1.0 | py27_0 582 KB<br /> openssl-1.0.2o | h20670df_0 3.4 MB<br /> pip-10.0.1 | py27_0 1.7 MB<br /> ca-certificates-2018.03.07 | 0 124 KB<br /> ------------------------------------------------------------<br /> Total: 19.6 MB</p><p>The following NEW packages will be INSTALLED:</p><p>ca-certificates: 2018.03.07-0 <br /> certifi: 2018.4.16-py27_0 <br /> libedit: 3.1-heed3624_0 <br /> libffi: 3.2.1-hd88cf55_4 <br /> libgcc-ng: 7.2.0-hdf63c60_3 <br /> libstdcxx-ng: 7.2.0-hdf63c60_3 <br /> ncurses: 6.0-h9df7e31_2 <br /> openssl: 1.0.2o-h20670df_0<br /> pip: 10.0.1-py27_0 <br /> python: 2.7.15-h1571d57_0<br /> readline: 7.0-ha6073c6_4 <br /> setuptools: 39.1.0-py27_0 <br /> sqlite: 3.23.1-he433501_0<br /> tk: 8.6.7-hc745277_3 <br /> wheel: 0.31.0-py27_0 <br /> zlib: 1.2.11-ha838bed_2</p><p>Proceed ([y]/n)? y</p><p><br />Downloading and Extracting Packages<br />wheel 0.31.0: #################################################################################################################################################################################################### | 100% <br />python 2.7.15: ################################################################################################################################################################################################### | 100% <br />certifi 2018.4.16: ############################################################################################################################################################################################### | 100% <br />sqlite 3.23.1: ################################################################################################################################################################################################### | 100% <br />setuptools 39.1.0: ############################################################################################################################################################################################### | 100% <br />openssl 1.0.2o: ################################################################################################################################################################################################## | 100% <br />pip 10.0.1: ###################################################################################################################################################################################################### | 100% <br />ca-certificates 2018.03.07: ###################################################################################################################################################################################### | 100% <br />Preparing transaction: done<br />Verifying transaction: done<br />Executing transaction: done<br />#<br /># To activate this environment, use:<br /># &gt; source activate py27<br />#<br /># To deactivate an active environment, use:<br /># &gt; source deactivate<br />#</p><p>➜ redundans git:(master) ✗ source activate py27</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/13276/senior-research-fellow-at-nit-rourkela</guid>
  <pubDate>Wed, 30 Jul 2014 00:53:13 -0500</pubDate>
  <link></link>
  <title><![CDATA[Senior Research Fellow at NIT, Rourkela]]></title>
  <description><![CDATA[
<p>NATIONAL INSTITUTE OF TECHNOLOGY, ROURKELA – 769 008(ORISSA)<br />SPONSORED RESEARCH, INDUSTRIAL CONSULTANCY &amp; CONTINUING EDUCATION</p>

<p>ADVERTISEMENT NO: NITR/SR/CH-BIF/2014/30</p>

<p>Applications are invited on prescribed format for the following assignment in a purely time bound research project undertaken in the Department of Biotechnology &amp; Medical Engineering of the Institute.</p>

<p>1. Name of the Temporary Post : Senior Research Fellow-01<br />2. Name of the Research Project: “ Bioinformatics Infrastructure Facility (BIF)”<br />3. Name of the Sponsoring Agency: DBT, Government of India, 4 Tenure of the Project : 12th Five year Plan<br />5 Tenure of the Assignment : 01 year [Likely to be extended for 04 more years]<br />6 Job Description : BIF Maintenance and Active Research in Bioinformatics<br />7. Consolidated monthly compensation / Fellowship: Rs.18,000/- P.M.</p>

<p>8. Essential Qualifications and experience: B.Tech with valid GATE Score or M.Tech degree in Biotechnology/Bioinformatics/Computer Science/Computational Biology<br />9. Desirable Qualifications/ Experiences: Experience of Programming in PERL,R, Python, Unix and Visual Studio + Knowledge in NGS data analysis work flows ,WGS and statistical packages such as CRAN-R,MATLAB etc.</p>

<p>10. Accommodation : Bachelor accommodation in the Institute may be provided subject to availability.<br />11. For technical information on the project, the candidate may contact the Principal Investigator at the following address:</p>

<p>Name : Prof. Mukesh K Gupta<br />Address : Dept. of Biotechnology &amp; Medical Engineering,<br />N.I.T.Rourkela-769 008<br />Telephone No : 0661-2462294<br />E-mail : guptam@nitrkl.ac.in</p>

<p>Eligible persons may apply in the prescribed format (available in the Institute Website)affixed with coloured photographs to be submitted in duplicate along with photo copies of relevant certificates, grade/ mark sheets, publications etc., to Asst. Registrar, SRICCE,<br />National Institute of Technology, Rourkela–769 008 before 22.08.2014. The cover should be super- scribed clearly the post applied for &amp; Name of the Project.</p>

<p>Mere possession of minimum qualification does not guarantee invitation to the interview.<br />Candidates will be short listed based on merit and need of the project.</p>

<p>Advertisement:</p>

<p>http://www.nitrkl.ac.in/IntraWeb/Jobs_Tenders/Jobs/ProjectFellowship/2014/141707192838_1.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/44284/tools-for-geospatial-data-analysis</guid>
	<pubDate>Wed, 22 Mar 2023 02:10:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/44284/tools-for-geospatial-data-analysis</link>
	<title><![CDATA[Tools for Geospatial data analysis !]]></title>
	<description><![CDATA[<div><div><div><div><div><div><div><div><div><div><p>Geospatial data is becoming increasingly important in many fields, including urban planning, environmental science, public health, and more. These tools can help you work with data from a variety of sources, including satellite imagery, GPS data, and other forms of spatial data. They can help you visualize data, perform complex analysis, and even create maps and other visualizations.</p><p>The list includes some of the most popular and widely used geospatial tools available in Python. These tools can help you work with data from a variety of sources and in a variety of formats. Some of the tools are focused on visualization, such as Cartopy, Folium, and Contextily, which allow you to create interactive maps and other visualizations. Other tools are more focused on data manipulation and analysis, such as Fiona, GeoPandas, and Rasterio, which allow you to manipulate and analyze spatial data in a variety of ways.</p><p>The list also includes some tools for working with specific types of geospatial data. For example, the H3 library is designed specifically for working with hexagonal grids, while PySAL is focused on spatial econometrics and spatial analysis. Whether you are a data scientist, GIS specialist, or geospatial enthusiast, these tools are sure to enhance your work and help you achieve your goals.</p><p>In summary, this list is an excellent resource for anyone working with geospatial data in Python. It contains a wide range of tools for working with different types of data, and can help you visualize data, perform complex analysis, and create maps and other visualizations. If you're looking to enhance your skills in geospatial analysis, this list is definitely worth checking out.</p></div></div></div><div><p>These tools are:</p><ul>
<li>ArcGIS - <a href="https://lnkd.in/dgC6sKJH" target="_new">https://lnkd.in/dgC6sKJH</a></li>
<li>Cartopy - <a href="https://lnkd.in/dc8ijXRg" target="_new">https://lnkd.in/dc8ijXRg</a></li>
<li>Contextily - <a href="https://lnkd.in/dTdQsmKX" target="_new">https://lnkd.in/dTdQsmKX</a></li>
<li>Descartes - <a href="https://lnkd.in/dCJykxwW" target="_new">https://lnkd.in/dCJykxwW</a></li>
<li>Fiona - <a href="https://lnkd.in/d8sJ3Q5a" target="_new">https://lnkd.in/d8sJ3Q5a</a></li>
<li>Folium - <a href="https://lnkd.in/dfSsE-MB" target="_new">https://lnkd.in/dfSsE-MB</a></li>
<li>GDAL - <a href="https://lnkd.in/dYBJBaAY" target="_new">https://lnkd.in/dYBJBaAY</a></li>
<li>Geohash - <a href="https://lnkd.in/d_NxJ4_M" target="_new">https://lnkd.in/d_NxJ4_M</a></li>
<li>GeoJSON - <a href="https://lnkd.in/daGs2WYq" target="_new">https://lnkd.in/daGs2WYq</a></li>
<li>GeoPandas - <a href="https://lnkd.in/dBTFKKV3" target="_new">https://lnkd.in/dBTFKKV3</a></li>
<li>Geopy - <a href="https://lnkd.in/dfAzR8Xa" target="_new">https://lnkd.in/dfAzR8Xa</a></li>
<li>Gevent - <a href="http://www.gevent.org/" target="_new">http://www.gevent.org</a></li>
<li>H3 - <a href="https://h3geo.org/docs/" target="_new">https://h3geo.org/docs/</a></li>
<li>OSMnx - <a href="https://lnkd.in/dm3pHgUS" target="_new">https://lnkd.in/dm3pHgUS</a></li>
<li>PyQGIS - <a href="https://lnkd.in/dShWyWVr" target="_new">https://lnkd.in/dShWyWVr</a></li>
<li>PySAL - <a href="https://pysal.org/" target="_new">https://pysal.org</a></li>
<li>Pydeck - <a href="https://lnkd.in/dGBFu-iw" target="_new">https://lnkd.in/dGBFu-iw</a></li>
<li>Pyproj - <a href="https://lnkd.in/dNG9fdkm" target="_new">https://lnkd.in/dNG9fdkm</a></li>
<li>RTree - <a href="https://lnkd.in/dURMiYpU" target="_new">https://lnkd.in/dURMiYpU</a></li>
<li>Rasterio - <a href="https://lnkd.in/dEMC6ve6" target="_new">https://lnkd.in/dEMC6ve6</a></li>
<li>Scikit-mobility - <a href="https://lnkd.in/dpHhaX2J" target="_new">https://lnkd.in/dpHhaX2J</a></li>
<li>Shapely - <a href="https://lnkd.in/d568datK" target="_new">https://lnkd.in/d568datK</a></li>
</ul><p>These tools offer a wide range of capabilities for working with geospatial data, from visualizing and manipulating data to performing complex analysis and modeling. Whether you are a data scientist, GIS specialist, or geospatial enthusiast, these tools are sure to enhance your work and help you achieve your goals.</p></div></div></div></div></div></div></div></div>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/13510/studentship-and-traineeship-in-bioinformatics-at-barkatullah-university-bhopal</guid>
  <pubDate>Thu, 07 Aug 2014 16:57:00 -0500</pubDate>
  <link></link>
  <title><![CDATA[Studentship and Traineeship in Bioinformatics at Barkatullah University, Bhopal]]></title>
  <description><![CDATA[
<p>Department of Biotechnology &amp; Bioinformatics Center<br />Barkatullah University, Bhopal – 462 026</p>

<p>Studentship and Traineeship in Bioinformatics</p>

<p>Applications are invited on plain paper from suitable candidates for Studentship and Traineeship (One each) at Bioinformatics Sub-Center as detailed below:</p>

<p>1. Studentship: Studentship is for those who have completed M. Sc. Degrees in Life Science.</p>

<p>Number of seats : One</p>

<p>Duration : Six months</p>

<p>Eligibility : Passed M.Sc. degree in Life Sciences.</p>

<p>Fellowship : Rs. 5000/- (Five thousand only) per month</p>

<p>2. Traineeship: Traineeship is for those who have completed M. Sc. Degrees in Life Science/Registered Ph. D. student in Life Sciences.</p>

<p>Number of seats : One</p>

<p>Duration : Six months</p>

<p>Eligibility : Passed M.Sc. degree in Life Sciences/ Registered Ph. D. student in Life Sciences</p>

<p>Fellowship : Rs. 5000/- (Five thousand only) per month</p>

<p>Preferences will be given to person who has experience in Bioinformatics and Computer<br />sciences. The application along with detailed bio-data should reach the undersigned, on or before 25th August 2014. Both, the studentship and the traineeship are temporary, will be discontinued after the six months from the date of Joining. It may be discontinued in-between without any notice, if the work is not found satisfactory.</p>

<p>Advertisement www.bioinfobubpl.nic.in/Advertisement_st.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/42921/run-bash-script-in-perl-program</guid>
	<pubDate>Sat, 27 Feb 2021 01:42:23 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42921/run-bash-script-in-perl-program</link>
	<title><![CDATA[Run bash script in Perl program !]]></title>
	<description><![CDATA[<p>BioPerl is a compilation of Perl modules that can be used to build bioinformatics-related Perl scripts. It is used, for example, in the development of source codes, standalone software/tools, and algorithms in bioinformatics programmes. Different modules are easy to instal and include, making it easier to perform different functions. Despite the fact that Python is commonly favoured over Perl, some bioinformatics software, such as the standalone version of 'alienomics', is written in Perl. Often it's a major problem for beginners to execute certain Unix/shell commands in Perl script, so it's hard to determine which feature is unique to a situation.</p><div style="background-color: white;">Perl provides various features and operators for the execution of external commands (described as follows), which are unique in their own way.</div><div style="background-color: white;">&nbsp;</div><div style="background-color: white;">They vary slightly from one another, making it difficult for Perl beginners to choose between them.</div><div style="background-color: white;">&nbsp;</div><div style="background-color: white;"><strong>1. IPC::Open2</strong></div><p>More at https://bioinformaticsonline.com/snippets/view/42919/perl-ipcopen2-module</p><p><strong>2. exec&rdquo;&rdquo;</strong></p><p><em>&nbsp;syntax:&nbsp;</em><code>exec "command";</code></p><div style="background-color: #edfbff;">It's a Perl function (perlfunc) that executes a command but never returns, similar to a function's return statement.</div><div style="background-color: white;">While running the command, it keeps processing the script and does not wait until it finishes first, returns false when the command is not found, but never returns true.</div><p><strong>3. Backticks &ldquo; or qx//</strong></p><p><em>syntax:&nbsp;</em><code>`command`;</code></p><p><em>syntax:&nbsp;</em><code>qx/command/;</code></p><div style="background-color: white;">It's a Perl operator (perlop) that executes a command and then resumes the Perl script once the command has ended, but the return value is the command's STDOUT.</div><p><strong>4. IPC::Open3</strong></p><p><em>syntax:&nbsp;</em><code>$output =&nbsp;open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR,&nbsp;'command arg1 arg2', 'optarg',...);</code></p><p style="text-align: justify;"><code></code>It is very similar to <code>IPC::Open2</code> with the capability to capture all three file handles of the process, i.e., STDIN, STDOUT, and STDERR. It can also be used with or without the shell. You can read about it more in the documentation: <a href="https://perldoc.perl.org/IPC/Open3.html" target="_blank">IPC::Open3</a>.</p><p><code>$output = open3(my $o ut,&nbsp;my $in, 'command arg1 arg2');</code></p><p>OR without using the shell</p><p><code>$output = open3(my $out,&nbsp;my $in, 'command', 'arg1', 'arg2');</code></p><p><strong>5.a2p</strong></p><p><em>syntax:&nbsp;</em><code>a2p [options] [awkscript]</code></p><p>There is a Perl utility known as <code>a2p</code> which translates <code>awk</code> command to Perl. It takes awk script as input and generates a comparable Perl script as the output. Suppose, you want to execute the following <code>awk</code> statement</p><p><code>awk '{$1 = ""; $2 = ""; print}' f1.txt</code></p><p>This statement gives error sometimes even after escaping the variables (\$1, \$2) but by using <code>a2p</code> it can be easily converted to Perl script:</p><p>For further information, you can read it&rsquo;s documentation: <code><a href="https://perldoc.perl.org/a2p.html" target="_blank">a2p</a></code></p><p>More help at https://bioinformaticsonline.com/snippets/view/42920/perl-script-to-run-awk-inside-perl</p><p><strong>6. system()</strong></p><p><em>syntax:&nbsp;</em><code>system( "command" );</code></p><p>It is also a Perl function (<a href="https://perldoc.perl.org/functions/system.html" target="_blank">perlfunc</a>) that executes a command and waits for it to get finished first and then resume the Perl script. The return value is the exit status of the command. It can be called in two ways:</p><p><code>system( "command arg1 arg2" );</code></p><p>OR</p><p><code>system( "command", "arg1", "arg2" );</code></p><p>HELP</p><p>Here are some useful Perl cheat sheets that can be used as a quick reference guide.--&nbsp;<a href="https://www.pcwdld.com/perl-cheat-sheet" target="_blank">https://www.pcwdld.com/perl-cheat-sheet</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/14011/dynamic-chromosome-breakpoints</guid>
	<pubDate>Wed, 13 Aug 2014 18:38:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/14011/dynamic-chromosome-breakpoints</link>
	<title><![CDATA[Dynamic chromosome breakpoints !!!]]></title>
	<description><![CDATA[<p>Cell division involves the distribution of identical genetic material, DNA, to two daughters&rsquo; cells. During this process, duplicated deoxyribonucleic acid (DNA) goes through a condensation and decondensation process. This is followed by nuclear envelope dissolution, mitotic spindle assembly, migration of the sister chromatid pairs to the metaphase plate, division and segregation of identical sets of chromosomes into daughter nuclei and nuclear envelope reformation.</p><p>The vital metaphase stage of cell division, when the sister chromatids migrated to the centre and lined up in a row, and pulled apart using attached microtubules in such a way that half the DNA ends up in each daughter cell. However, before the mitotic spindle‐mediated movement gets start and pulled DNA apart, the chromosomes are free to undergo <strong>recombination </strong>which involves the exchange of genetic material either between multiple chromosomes or between different regions of the same chromosome.</p><p><img src="http://www.sciencelearn.org.nz/var/sciencelearn/storage/images/contexts/uniquely-me/sci-media/images/chromosomes-crossing-over/464438-1-eng-NZ/Chromosomes-crossing-over.jpg" alt="image" width="504" height="342" style="border: 0px; border: 0px;"></p><p>During recombination, the precise breakage of each strand, exchange between the strands, and sealing of the resulting recombined molecules happens. The &ldquo;<strong>chromosomal breakpoints</strong>&rdquo; refers to these places where they break. Mostly, this process occurs with a high degree of accuracy at high frequency in both eukaryotic and prokaryotic cells. But occasionally this &ldquo;break and sealing/ break and reattach&rdquo; process goes wrong and the reattachment happens in the wrong place which usually create disaster (with few exceptions).These chromosome disaster or abnormalities involve the gain, loss or rearrangement of visible amounts of genetic material during cell division. These abnormalities are of two type, the first one is numerical abnormalities &nbsp;where severe disorders are caused by the loss or gain of whole chromosomes, which affect the copy number of hundreds or even thousands of genes. The second are structural abnormalities which can be unbalanced or balanced. The former are similar to numerical abnormalities in that genetic material is either gained or lost. The natural defects in chromosome segregation are linked to cancer and several genetic diseases (http://en.wikipedia.org/wiki/List_of_genetic_disorders). Therefore, the enzymes involved in regulating cell division are still the attractive drug targets for many diseases.</p><p>&nbsp;</p><p>&nbsp;</p><p><img src="http://upload.wikimedia.org/wikipedia/commons/4/4a/Chromosomal_translocations.svg" alt="image" width="424" height="331" style="border: 0px; border: 0px;"></p><p>&nbsp;</p><p>Apart from certain chromosome abnormalities, these &ldquo;crossing over&rdquo; of segments of maternal and paternal chromosomes to form hybrid chromosomes have some evolutionary importance and considered as a driver of genetic variation. Moreover, the chromosome breakage in evolution is considered to be non-random in nature(http://www.ploscompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.0020014). In addition the study of breakpoint regions and non-breakpoint (stable) regions of chromosomes indicates both the regions evolved in distinctly different ways ( http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2675965/). These breakage may lead to genetic diseases or participate to chromosomal rearranmgnets and contributed in development of new species.</p><p>I will try to explain the genome hotspots/Evolutionary Breakpoint Regions(EBRs)/fragile regions/weak fragments/&nbsp; in my next blog.</p><p><strong>Software for recombination detection:</strong></p><p><strong>RAT</strong> http://cbr.jic.ac.uk/dicks/software/RAT/</p><p><strong>Breakpointer</strong> https://github.com/ruping/Breakpointer</p><p><strong>DRP</strong> http://web.cbio.uct.ac.za/~darren/rdp.html</p><p><strong>RB-finder</strong> http://www.ncbi.nlm.nih.gov/pubmed/18707535</p><p><strong>LDhat2.0</strong> http://ldhat.sourceforge.net/LDhat2.0/instructions.shtml</p><p><strong>Reference:</strong></p><p>http://www.nature.com/scitable/topicpage/genetic-recombination-514#</p><p>Image: Wikipedia , sciencelearn.org.nz</p><p><strong>Recommended Articles:</strong></p><p>http://www.friendshipcircle.org/blog/2012/05/22/13-chromosomal-disorders-youve-never-heard-of/</p><p>http://web.udl.es/usuaris/e4650869/docencia/segoncicle/genclin98/recursos_classe_%28pdf%29/revisionsPDF/chromosyndromes.pdf</p><p>http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2775595/table/T2/</p><p>http://learn.genetics.utah.edu/content/disorders/chromosomal/</p><p>http://www.ncert.nic.in/html/learning_basket/biology/cc&amp;cd.pdf</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43859/mumco-is-a-simple-bash-script-that-uses-whole-genome-alignment-information-provided-by-mummer-v4-to-detect-variants</guid>
	<pubDate>Wed, 27 Apr 2022 04:34:12 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43859/mumco-is-a-simple-bash-script-that-uses-whole-genome-alignment-information-provided-by-mummer-v4-to-detect-variants</link>
	<title><![CDATA[MUM&amp;Co is a simple bash script that uses Whole Genome Alignment information provided by MUMmer (v4) to detect variants.]]></title>
	<description><![CDATA[<p dir="auto">MUM&amp;Co is able to detect:<br>Deletions, insertions, tandem duplications and tandem contractions (&gt;=50bp &amp; &lt;=150kb)<br>Inversions (&gt;=1kb) and translocations (&gt;=10kb)</p><p>Address of the bookmark: <a href="https://github.com/SAMtoBAM/MUMandCo" rel="nofollow">https://github.com/SAMtoBAM/MUMandCo</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/14183/guest-faculty-at-pondicherry-university</guid>
  <pubDate>Wed, 20 Aug 2014 00:37:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[Guest Faculty at Pondicherry University]]></title>
  <description><![CDATA[
<p>Pondicherry University, India</p>

<p>Walk in interview for guest faculty in Pondicherry University, India. For more information please visit http://www.bicpu.edu.in/bioinfor140814.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/14339/apps-for-busy-bioinformatics-researchers</guid>
	<pubDate>Mon, 25 Aug 2014 01:26:19 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/14339/apps-for-busy-bioinformatics-researchers</link>
	<title><![CDATA[Apps for Busy Bioinformatics Researchers !!!]]></title>
	<description><![CDATA[<h3>DNAApp:</h3><h4><strong>DNAApp: for </strong><a href="https://itunes.apple.com/us/app/dnaapp/id854944694?mt=8" target="_blank"><strong>iPhone/iPad</strong></a></h4><p>This is an <a href="http://www.apple.com/ios/" target="_blank" title="IOS">iOS</a> app that allows for the opening and analysis of <a href="http://en.wikipedia.org/wiki/DNA_sequencing" target="_blank" title="DNA sequencing">DNA sequencing</a> files - ab1. It includes handy tools such as "<a href="http://en.wikipedia.org/wiki/Complementarity_%28molecular_biology%29" target="_blank" title="Complementarity (molecular biology)">Reverse Complement</a>", "Jump to", "<a href="http://en.wikipedia.org/wiki/Cut%2C_copy%2C_and_paste" target="_blank" title="Cut, copy, and paste">Copy and Paste</a> sequences", fast and end scrolling, "<a href="http://en.wikipedia.org/wiki/Chromatography" target="_blank" title="Chromatography">Chromatogram</a> adjustments", and "Searching for segments" functions. <br /> When used in combination with other zip apps, and also web-tools like Blast, this app allows you to analyze, and also determine the quality of your sequencing files. <br /> This app works with cloud storage access like Dropbox to your sequencing files. <br /> This is now compatible with the new update for iOS 7.1. <br /> Demo video can be found at:<strong> https://www.youtube.com/watch?v=mXeo9hXdZgM&nbsp;</strong></p><p><strong>More @ </strong><a href="https://itunes.apple.com/us/app/dnaapp/id854944694?mt=8" target="_blank" title="https://itunes.apple.com/us/app/dnaapp/id854944694?mt=8"><strong>https://itunes.apple.com/us/app/dnaapp/id854944694?mt=8</strong></a></p><h4><a href="https://play.google.com/store/apps/details?id=bii.seqdatreader&amp;hl=en" target="_blank"><strong>DNAApp: For android</strong></a></h4><p>This is the first android app that allows for the opening and analysis of DNA sequencing files - ab1. It includes handy tools such as "Reverse Complement", "Jump to", fast and end scrolling, "Chromatogram adjustments", amino acid translations, "export to fasta", and "searching for segment" function.</p><ul>
<li>When used in combination with other zip apps, and also web-tools like Blast, this app allows you to analyze, and also determine the quality of your sequencing files.</li>
<li>This app works with cloud storage access like Dropbox to your sequencing files.</li>
<li>This is now compatible with the new update for <a href="http://code.google.com/android/" target="_blank" title="Android">Android</a> 4.4.2.</li>
</ul><p><strong>More @&nbsp; </strong><a href="https://play.google.com/store/apps/details?id=bii.seqdatreader&amp;hl=en" target="_blank" title="https://play.google.com/store/apps/details?id=bii.seqdatreader&amp;hl=en"><strong>https://play.google.com/store/apps/details?id=bii.seqdatreader&amp;hl=en</strong></a></p><h3>BioGene:iPhone/iPad</h3><p>BioGene is an information tool for biological research. Use BioGene to learn about gene function. Enter a gene symbol or gene name, for example "CDK4" or "cyclin dependent kinase 4" and BioGene will retrieve its gene function and references into its function (<a href="http://en.wikipedia.org/wiki/GeneRIF" target="_blank" title="GeneRIF">GeneRIF</a>).</p><ul>
<li>BioGene was produced in affiliation with the Computational Biology Center at <a href="http://maps.google.com/maps?ll=40.764096,-73.956842&amp;spn=0.01,0.01&amp;q=40.764096,-73.956842%20%28Memorial%20Sloan%E2%80%93Kettering%20Cancer%20Center%29&amp;t=h" target="_blank" title="Memorial Sloan&ndash;Kettering Cancer Center">Memorial Sloan-Kettering Cancer Center</a> with primary information from Entrez Gene at the <a href="http://maps.google.com/maps?ll=38.994994,-77.099339&amp;spn=0.01,0.01&amp;q=38.994994,-77.099339%20%28National%20Center%20for%20Biotechnology%20Information%29&amp;t=h" target="_blank" title="National Center for Biotechnology Information">NCBI</a>.</li>
</ul><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/biogene/id333180084?mt=8" target="_blank" title="https://itunes.apple.com/us/app/biogene/id333180084?mt=8"><strong>https://itunes.apple.com/us/app/biogene/id333180084?mt=8</strong></a></p><h3>Mentha - the interactome browser: Android</h3><p>About: mentha - the interactome browser, is a project that offers protein-protein physical/enzymatic interaction information from various sources. For more details about mentha, visit mentha's website. This client application is an independent project. This application is designed to allow you to search proteins on the go.</p><h4><strong>Key features (Also in website):</strong></h4><ul>
<li>Search proteins by <a href="http://en.wikipedia.org/wiki/UniProt" target="_blank" title="UniProt">UniProt</a> IDs, gene name or keywords</li>
<li>Collect proteins from different queries.</li>
<li>Spot common interactors in clusters.</li>
<li>Easily distinguish between proteins from Homo sapiens and other organisms (Yellow rounded rectangles)</li>
<li>Click on edges(links) to get scientific evidence.</li>
<li>Click on proteins to see descriptions.</li>
</ul><p><strong>More @&nbsp; </strong><a href="https://play.google.com/store/apps/details?id=com.sinnefa.mentha&amp;hl=en" target="_blank" title="https://play.google.com/store/apps/details?id=com.sinnefa.mentha&amp;hl=en"><strong>https://play.google.com/store/apps/details?id=com.sinnefa.mentha&amp;hl=en</strong></a></p><h3>GeneIndex: iPhone/iPad</h3><p>GeneIndex quickly provides information about genes from various sources. It also includes a RSS reader for journal feeds as well as a PubMed viewer.</p><h4><strong>Key Features:</strong></h4><ul>
<li>Look up genes by symbol or description.</li>
<li>Gene indexes for many mammals, plants, invertebrates, and bacteria.</li>
<li>Link to gene info on websites.</li>
<li>Download files for offline use. (.pdf, .mp3, .m4v, .doc, .ppt, .xls )</li>
<li>transfer files via open in, email, or iTunes file sharing</li>
<li>View RSS feeds for journals</li>
<li>Query GeneRIF interactions, COSMIC mutations, and CNV data for cell lines.</li>
<li>Does not require a network connection for local databases.</li>
<li>View and search PubMed in table view.</li>
</ul><p><br /> GeneIndex provides a convenient and portable way to lookup gene symbols while at a seminar, conference, or lab meeting. Genes are linked to common life science websites such as NCBI, COSMIC, KEGG, PubMed, SymAtlas, UCSC genome browser, Pathway Commons, Genatlas, Wikipedia, HUGO, and OMIM. GeneRIF gene interactions can also be queried.</p><ul>
<li>Keep current on the scientific literature. GeneIndex includes a RSS reader and web browser for browsing popular journals like Nature, Science, and Cell. You can also add your own RSS feeds. PDFs and podcasts can be saved as files that you can view on the device or email as attachments.</li>
<li>Examine the status of genes in common cell lines. A subset of COSMIC containing cell lines can be queried for mutations. Copy Number Variation (CNV) plots from cell lines profiled by GSK and Sanger are also linked to genes.</li>
</ul><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/geneindex/id319769866?mt=8" target="_blank" title="https://itunes.apple.com/us/app/geneindex/id319769866?mt=8"><strong>https://itunes.apple.com/us/app/geneindex/id319769866?mt=8</strong></a></p><h3>Genome Voyager: iPad</h3><p>Gain first hand experience identifying the genomic basis of disease by analyzing cases with whole genome sequencing data that have been published for research and learning purposes.</p><ul>
<li>Visualize whole human genome sequencing data including small variations, copy number variations (CNVs), and loss of heterozygosity (LOH) events</li>
<li>Quickly find variants of interest by filtering variants based on associated genes, functional impact, allele frequency in data sets, and cross-references with various genomic databases.</li>
<li>Collaborate on variant assessments with other researchers and academics to improve knowledge of both pathogenic and benign variants. <br /> To use Genome Voyager, users must join Genome Voyager&rsquo;s community of researchers and academics. Visit <strong>http://voyager.completegenomics.com to signup.</strong></li>
</ul><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/genome-voyager/id637353801?mt=8" target="_blank" title="https://itunes.apple.com/us/app/genome-voyager/id637353801?mt=8"><strong>https://itunes.apple.com/us/app/genome-voyager/id637353801?mt=8</strong></a></p><h3>YeastGenome: iPhone/iPad</h3><p>Use YeastGenome to quickly find fundamental information about Saccharomyces cerevisae genes and chromosomal features. Search gene names, gene descriptions or browse the database to find information about your favorite gene, as well as more detailed information such as Gene Ontology, mutant phenotype, and protein and genetic interaction data. <br /> YeastGenome contains the latest from the Saccharomyces Genome Database (www.yeastgenome.org) in an on bound app database. As more detailed information is presented the app switches to web services access to SGD, and then for even more details provides complete information via hyperlinks to the appropriate SGD database pages.</p><h4><strong>Key features:</strong></h4><ul>
<li>Search using gene name or keywords</li>
<li>Browse by feature type</li>
<li>Save your favorite features</li>
<li>Can be used in airplane mode</li>
<li>Email information about features to collaborators</li>
</ul><h4><strong>What's New in Version 1.8.1</strong></h4><ul>
<li>This update is required to provide continued functionality. Some of the data provided by this app accesses the SGD service using a method that is changing in May 2013. This version provides changes to allow access to continue. The on board database of yeast gene information has also been updated to March 2013.</li>
</ul><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/yeastgenome/id520868597?mt=8" target="_blank" title="https://itunes.apple.com/us/app/yeastgenome/id520868597?mt=8"><strong>https://itunes.apple.com/us/app/yeastgenome/id520868597?mt=8</strong></a></p><h3>SNPdbe: iPhone/iPad</h3><p>SNPdbe &mdash; SNP database of effects, with predictions of computationally annotated functional impacts of SNPs. Database entries represent nsSNPs in dbSNP and 1000 Genomes collection, as well as variants from UniProt and PMD. SAASs come from &gt;2600 organisms; &lsquo;human&rsquo; being the most prevalent. The impact of each SAAS on protein function is predicted using the SNAP and SIFT algorithms and augmented with experimentally derived function/structure information and disease associations from PMD, OMIM and UniProt.</p><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/snpdbe/id588289719?mt=8" target="_blank" title="https://itunes.apple.com/us/app/snpdbe/id588289719?mt=8"><strong>https://itunes.apple.com/us/app/snpdbe/id588289719?mt=8</strong></a></p><h3>SimGene: iPhone/iPad / Android</h3><h4><strong>SimGene: for iPhone/iPad </strong></h4><p>SimGene is an iPhone/iPad/iPod touch application designed for molecular biologists, bioinformaticians and medical researchers. The application interfaces with Simbiot, Ensembl, NCBI, Gene Ontology, KEGG Pathways, PubMed, Genomic Variations and many other databases to retrieve up-to-date annotation information for over 30 species, based on gene symbol search. The application provides gene and transcript cross reference information for NCBI, Ensembl, RefSeq and UniProt. SimGene also contains an integrated genome browser with information on genes, transcripts, exons and SNPs.</p><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/simgene/id427772349?mt=8" target="_blank" title="https://itunes.apple.com/us/app/simgene/id427772349?mt=8"><strong>https://itunes.apple.com/us/app/simgene/id427772349?mt=8</strong></a></p><h4><strong>SimGene: for Android</strong></h4><p>bioinformaticians and medical researchers. The application interfaces with Simbiot,Ensembl, NCBI, Gene Ontology, KEGG Pathways, PubMed, Genomic Variations andmany other databases to retrieve up-to-date annotation information for over 30species, based on gene symbol search. The application provides gene and transcriptcross reference information for NCBI, Ensembl, RefSeq and UniProt. SimGene alsocontains an integrated genome browser with information on genes, transcripts,exons and SNPs.</p><p><strong>More @&nbsp; </strong><a href="https://play.google.com/store/apps/details?id=com.japanbioinformatics.simgene&amp;hl=en" target="_blank" title="https://play.google.com/store/apps/details?id=com.japanbioinformatics.simgene&amp;hl=en"><strong>https://play.google.com/store/apps/details?</strong></a></p><h3>TimeTree: iPhone/iPad</h3><p>TimeTree is a public knowledge-base for information on the evolutionary timescale of life. This application allows easy exploration of the thousands of divergence times among organisms in the scientific literature. A tree-based (hierarchical) system is used to identify all published molecular time estimates bearing on the divergence of two chosen organisms, such as species, compute summary statistics, and present the results. Names of two taxa to be compared are entered in the search window and the results are presented on a set of self-explanatory tabs.</p><ul>
<li>TimeTree 3.0 was released September 27, 2011 with new data from 1209 studies including 25342 time nodes. We will be adding more data in the future as it comes in from researchers.</li>
<li>TimeTree is jointly directed by Blair Hedges (Pennsylvania State University) and Sudhir Kumar (Arizona State University). This project has been supported, in part, by grants from the National Science Foundation, National Institutes of Health, NASA Astrobiology Institute, and Science Foundation of Arizona.</li>
</ul><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/timetree/id372842500?mt=8" target="_blank" title="https://itunes.apple.com/us/app/timetree/id372842500?mt=8"><strong>https://itunes.apple.com/us/app/timetree/id372842500?mt=8</strong></a></p><h3><strong>GeneGroove: iPhone/iPad </strong></h3><p>GeneGroove is the first application to create a music melody from DTC-Genomics data. If you own 23andMe (Mountain View, CA) personal genomic results, GeneGroove will create for you a unique melody intimately based on your 23andMe genome informations. The music in you.</p><ul>
<li>After uploading your 23andMe raw data onto your iPhone via iTunes, GeneGroove will analyze your genome informations and generate a unique identifier key. This key, called the GeNumber, will embed the uniqueness of your genome data while keeping your privacy safe, and will be used by GeneGroove to generate your music melody.</li>
<li>The GeNumber doesn't contain anymore genomic information but it is based on your genome and it is unique, it is yours. It will be used in upcoming Portable Genomics applications to mix and remix music, manipulate sounds and share your art with your friends and family.</li>
</ul><p><strong>More @&nbsp; </strong><a href="https://itunes.apple.com/us/app/genegroove/id492247404?mt=8" target="_blank" title="https://itunes.apple.com/us/app/genegroove/id492247404?mt=8"><strong>https://itunes.apple.com/us/app/genegroove/id492247404?mt=8</strong></a></p>]]></description>
	<dc:creator>Manisha Mishra</dc:creator>
</item>

</channel>
</rss>