<?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/36605?offset=60</link>
	<atom:link href="https://bioinformaticsonline.com/related/36605?offset=60" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40214/gooey-turn-almost-any-python-command-line-program-into-a-full-gui-application-with-one-line</guid>
	<pubDate>Fri, 01 Nov 2019 00:29:27 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40214/gooey-turn-almost-any-python-command-line-program-into-a-full-gui-application-with-one-line</link>
	<title><![CDATA[Gooey: Turn (almost) any Python command line program into a full GUI application with one line]]></title>
	<description><![CDATA[<p><span>Turn (almost) any Python command line program into a full GUI application with one line</span></p>
<p>The easiest way to install Gooey is via&nbsp;<code>pip</code></p>
<pre><code>pip install Gooey 
</code></pre>
<p>Alternatively, you can install Gooey by cloning the project to your local directory</p>
<pre><code>git clone https://github.com/chriskiehl/Gooey.git
</code></pre>
<p>run&nbsp;<code>setup.py</code></p>
<pre><code>python setup.py install</code></pre><p>Address of the bookmark: <a href="https://github.com/chriskiehl/Gooey" rel="nofollow">https://github.com/chriskiehl/Gooey</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/41041/post-doc-computational-biology-bioinformatics-network-biology-data-science-ngs-mfd</guid>
  <pubDate>Sat, 15 Feb 2020 06:13:35 -0600</pubDate>
  <link></link>
  <title><![CDATA[Post Doc Computational Biology, Bioinformatics - Network Biology &amp; Data Science, NGS (m/f/d)]]></title>
  <description><![CDATA[
<p>https://www.jobvector.de/jobs-stellenangebote/biologie-life-sciences/forschung-entwicklung/post-doc-computational-biology-bioinformatics-network-biology-data-science-ngs-129867.html?suid=e522e9793b41817e52ac58d6963b94e2519920df</p>

<p>Requirements<br />Doctoral degree in Bioinformatics, Computational Biology, (Bio)physics/-mathematics, Biochemistry/Biology or similar with strong quantitative and numeric focus<br />Ability to numerically process complex and large data sets<br />Good programming skills (R/Bioconductor and/or Python preferred, Linux is a plus)<br />Experience in analyzing next-generation sequencing data sets using network biology<br />Scientific publication record in applied bioinformatics<br />Familiarity with single cell NGS analyses and other –omics techniques is a plus, but not essential</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43101/luigi-a-python-package-that-helps-you-build-complex-pipelines-of-batch-jobs</guid>
	<pubDate>Thu, 24 Jun 2021 05:43:31 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43101/luigi-a-python-package-that-helps-you-build-complex-pipelines-of-batch-jobs</link>
	<title><![CDATA[Luigi: a Python package that helps you build complex pipelines of batch jobs.]]></title>
	<description><![CDATA[<p>Luigi is a Python (3.6, 3.7, 3.8, 3.9 tested) package that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization, handling failures, command line integration, and much more.</p>
<p>Run <code>pip install luigi</code> to install the latest stable version from <a href="https://pypi.python.org/pypi/luigi">PyPI</a>. <a href="https://luigi.readthedocs.io/en/stable/">Documentation for the latest release</a> is hosted on readthedocs.</p>
<p>Run <code>pip install luigi[toml]</code> to install Luigi with <a href="https://luigi.readthedocs.io/en/stable/configuration.html">TOML-based configs</a> support.</p><p>Address of the bookmark: <a href="https://github.com/spotify/luigi" rel="nofollow">https://github.com/spotify/luigi</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</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/bookmarks/view/41487/tinycov-standalone-command-line-utility-written-in-python-to-plot-coverage-from-a-bam-file</guid>
	<pubDate>Mon, 23 Mar 2020 06:22:08 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/41487/tinycov-standalone-command-line-utility-written-in-python-to-plot-coverage-from-a-bam-file</link>
	<title><![CDATA[tinycov: standalone command line utility written in python to plot coverage from a BAM file]]></title>
	<description><![CDATA[<p>Tinycov is a small standalone command line utility written in python to plot the coverage of a BAM file quickly. This software was inspired by&nbsp;<a href="https://github.com/matted/genome_coverage_plotter">Matt Edwards' genome coverage plotter</a>.</p>
<p>To install the stable version:&nbsp;<code>pip3 install --user tinycov</code></p>
<p>To install the development version:</p>
<pre><code>git clone https://github.com/cmdoret/tinycov.git
cd tinycov
pip install .</code></pre><p>Address of the bookmark: <a href="https://github.com/cmdoret/tinycov" rel="nofollow">https://github.com/cmdoret/tinycov</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/42329/10-ngs-services-companies-around-the-globe</guid>
	<pubDate>Sun, 22 Nov 2020 23:56:17 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42329/10-ngs-services-companies-around-the-globe</link>
	<title><![CDATA[10 NGS services companies around the globe !]]></title>
	<description><![CDATA[<p><strong>The global&nbsp;NGS services market&nbsp;is expected to reach USD 13.1 billion by 2025.&nbsp;</strong>Here are the&nbsp;<strong style="font-size: 12.8px;">top 10 NGS services companies to look for &ndash;</strong></p><p><strong>1.&nbsp;<a href="https://www.illumina.com/">Illumina, Inc. (U.S.)</a></strong></p><p>Illumina, Inc. was founded in 1998 and is headquartered at San Diego, U.S. Illumina, Inc. is one of the leading players in DNA sequencing and array-based technologies, serving customers in the research, clinical, and applied markets. The company offers products for applications in the life sciences, oncology, reproductive health, agriculture, and other emerging segments. The company serves government laboratories, genomic research centers, academics institutions as well as pharmaceutical, biotechnology, agrigenomics, commercial molecular diagnostics laboratories and consumer genomics companies. Illumina, Inc. has its geographic presence in North America, Europe, Latin America, Asia-pacific, and others.</p><p><strong>2.&nbsp;<a href="https://www.qiagen.com/us/">QIAGEN N.V. (Netherlands)</a></strong></p><p>QIAGEN N.V. was incorporated in 1986 and is headquartered at Venlo, The Netherlands. The Company is engaged in providing Sample to Insight solutions that transform biological samples into molecular insights. QIAGEN provides its workflow to customers in molecular diagnostics, assay technologies, bioservices and automation systems.&nbsp; The company&rsquo;s genome services are suitable for custom/tailored projects that allow access to genomic sequence information.&nbsp; The Company market its products in more than 100 countries across the Americas, Europe, Asia, Australia, and the Middle-East &amp;Africa through its subsidiaries and channel partners.</p><p><strong>3.&nbsp;<a href="https://www.perkinelmer.com/">PerkinElmer, Inc. (U.S.)</a></strong></p><p>PerkinElmer, Inc. was founded in 1947 and is headquartered in Waltham, Massachusetts, the U.S. PerkinElmer, Inc. offers its products &amp; services and solutions for the diagnostics, food, environmental, industrial, life sciences research and laboratory services markets. The company offer comprehensive genetic testing solutions that help to provide insight into the complex nature of rare and inherited diseases. Some of the subsidiaries of the company are Caliper Life Sciences, Improvision, Viacell Inc., ViaCord LLC, among many others. The company has its facilities located in Europe (France, Germany, and Belgium), U.S. and Asia (China, India, and Japan).</p><p><strong>4.&nbsp;<a href="https://www.eurofins.com/">Eurofins Scientific SE (Luxembourg)</a></strong></p><p>Eurofins Scientific SE was founded in 1987 and is headquartered in Luxembourg, Europe. The company offers a portfolio of over 130,000 analytical methods and more than 150 million assays performed each year to establish the safety, identity, composition, authenticity, origin, traceability, and purity of biological substances and products, as well as carry out human diagnostic services. The company has its geographic presence across 39 countries in Europe, North and South America, and Asia-Pacific.</p><p><strong>5.&nbsp;<a href="https://www.gatc-biotech.com/en/index.html">GATC Biotech AG (Germany)</a></strong></p><p>GATC Biotech AG was founded in 1990 and is headquartered in Constance, Germany. The company provides DNA and RNA sequencing and bioservices solutions to academics and industrial areas. It also provides next generation sequencing services including genomes, targeted (re)-sequencing, human sample sequencing, transcriptomes, metagenomes, regulomes, pre-sequencing, NGS barcode labels, and next generation sequencing technologies; and bioservices services, including bioservices tools, pipelines and workflows, compute resources, data analysis reports, and case studies. GATC Biotech AG operates as a subsidiary of Eurofins Scientific SE. It offers its products through distributors in Italy, Japan, Portugal, Spain, and the Czech Republic.</p><p><strong>6.<a href="https://www.macrogen.com/">&nbsp;Macrogen, Inc. (South Korea)</a></strong></p><p>Macrogen, Inc. was founded in 1997 and is headquartered in Seoul, South Korea. Macrogen, Inc. provides next generation sequencing services such as whole genome, de novo, exome, targeted, transcriptomics, metagenome, and epigenome sequencing.&nbsp; The company also provides a variety of services such as oligo synthesis, database construction, genome research, and bioservices analysis system consulting services. Macrogen, Inc. provides genome research services in Korea and internationally.</p><p><strong>7.&nbsp;<a href="https://www.genotypic.co.in/">Genotypic Technology Pvt. Ltd. (India)</a></strong></p><p>Genotypic Technology Pvt. Ltd. was incorporated in 1998 and is headquartered in Bangalore, India. Genotypic Technology is the first Genomics service provider in India providing Microarray, Next Generation Sequencing (NGS), Bioservices and solutions to domestic/ international pharma, biotech companies and academia. The company provides its services for protocol optimization, probe designing, array layouts, project designing, and nucleic acid analysis to in-depth analysis. Genotypic Technology has its geographic presence in North America, Europe, Asia Pacific, Middle East &amp; Africa, and Latin America.</p><p><strong>8.&nbsp;<a href="https://www.genewiz.com/">GENEWIZ, Inc. (U.S.)</a></strong></p><p>GENEWIZ, Inc. was founded in 1999 and is headquartered in South Plainfield, New Jersey, the U.S.; The company is a leading provider of research service in the field of Next Generation Sequencing, Sanger DNA sequencing, sequencing of bacteria and phage, gene synthesis, DNA cloning, genomics including mutation analysis, single nucleotide polymorphism, and bioservices. GENEWIZ, Inc. has its geographic presence in U.S., China, Germany, France, Japan, and the U.K.</p><p><strong>9.&nbsp;<a href="https://www.genomics.cn/">Beijing Genomics Institute (China)</a></strong></p><p>Beijing Genomics Institute (BGI) is the world&rsquo;s largest genomics organization and non-profit research institution that was founded in 1999 and is headquartered in Shenzhen, China. The Company provides a wide range of commercial next generation sequencing services and genetic tests for medical institutions, agricultural and environmental applications. The Company operates all across the globe through its subsidiaries, namely, BGI China (Mainland), BGI Asia Pacific, BGI Americas (North and South America) and BGI Europe (Europe and Africa).</p><p><strong>10.&nbsp;<a href="https://www.scigenom.com/">SciGenom Labs Pvt. Ltd (India)</a></strong></p><p>SciGenom Labs Pvt. Ltd was founded in 2010 and is headquartered in Cochin, India with offices in Chennai &amp; Hyderabad in India, and San Francisco in the U.S. It is a Genomics R&amp;D services company that provides genomic sequencing and NGS services to life sciences and healthcare businesses globally as well as academic and government institutions in India.</p><p>Popular mentions &ndash; MedGenome (India), DNA Link, Inc. (South Korea), Otogenetics Corporation (U.S.), Novogene Corporation (China), LGC Limited (U.K.), CD Genomics (U.S.), SeqLL, LLC (U.S.)</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/34041/r-tuorial</guid>
	<pubDate>Mon, 31 Jul 2017 08:41:40 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/34041/r-tuorial</link>
	<title><![CDATA[R tuorial]]></title>
	<description><![CDATA[<p>R learning resources</p>
<p>https://flowingdata.com/</p><p>Address of the bookmark: <a href="https://flowingdata.com/" rel="nofollow">https://flowingdata.com/</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/42810/bioinformatics-in-africa-part3-mali</guid>
	<pubDate>Sat, 06 Feb 2021 13:28:44 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/42810/bioinformatics-in-africa-part3-mali</link>
	<title><![CDATA[Bioinformatics in Africa: Part3 - Mali]]></title>
	<description><![CDATA[<p>International&nbsp;Center&nbsp;for&nbsp;Excellence&nbsp;in&nbsp;Research&nbsp;(ICER):</p><p>The&nbsp;ICER&nbsp;is&nbsp;a&nbsp;research&nbsp;center&nbsp;composed&nbsp;of&nbsp;the&nbsp;following&nbsp;three&nbsp;programs: 1. The&nbsp;Malaria&nbsp;Research&nbsp;and&nbsp;Training&nbsp;Center&nbsp;&shy;&nbsp;Parasitology&nbsp;Group,&nbsp; 2. The&nbsp;Malaria&nbsp;Research&nbsp;and&nbsp;Training&nbsp;Center&nbsp;&shy;&nbsp;Entomology&nbsp;Group&nbsp; 3. The&nbsp;SEREFO&nbsp;Group.</p><p>The&nbsp;first&nbsp;two&nbsp;programs&nbsp;develop&nbsp;biomedical&nbsp;researches&nbsp;in&nbsp;malaria,&nbsp;Filariasis&nbsp;and&nbsp;Leishmaniasis.&nbsp;The&nbsp; third&nbsp;program&nbsp;develops&nbsp;biomedical&nbsp;researches&nbsp;in&nbsp;tuberculosis&nbsp;and&nbsp;HIV.</p><p>Bioinformatics&nbsp;was&nbsp;introduced&nbsp;recently&nbsp;to&nbsp;the&nbsp;ICER&nbsp;and&nbsp;is&nbsp;constantly&nbsp;growing.&nbsp;The&nbsp;ICER&nbsp;has&nbsp;one&nbsp; team,&nbsp;headed&nbsp;by&nbsp;Sidy&nbsp;SOUMARE,&nbsp;which&nbsp;supports&nbsp;the&nbsp;three&nbsp;programmes&nbsp;in&nbsp;all&nbsp;their&nbsp;needs&nbsp;in&nbsp; informatics&nbsp;and&nbsp;bioinformatics.&nbsp;This&nbsp;team&nbsp;can&nbsp;beneficiate&nbsp;from&nbsp;some&nbsp;computational&nbsp;facilities&nbsp;(4&nbsp; blast&nbsp;servers,&nbsp;15&nbsp;other&nbsp;servers&nbsp;and&nbsp;around&nbsp;200&nbsp;terminals),&nbsp;but&nbsp;the&nbsp;ICER&nbsp;staff&nbsp;needs&nbsp;some&nbsp;training&nbsp;in&nbsp; order&nbsp;to&nbsp;be&nbsp;able&nbsp;to&nbsp;administrate&nbsp;these&nbsp;facilities.</p><p>Research&nbsp;Interest&nbsp;and&nbsp;Activities: The&nbsp;following&nbsp;are&nbsp;the&nbsp;present&nbsp;areas&nbsp;of&nbsp;research&nbsp;interest: 1. Functional&nbsp;genomics 2. Analysis&nbsp;of&nbsp;microarray&nbsp;data 3. Interaction&nbsp;between&nbsp;the&nbsp;vector&nbsp;and&nbsp;the&nbsp;parasite.</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/42815/bioinformatics-in-africa-part7-tunisia</guid>
	<pubDate>Sat, 06 Feb 2021 21:25:09 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/42815/bioinformatics-in-africa-part7-tunisia</link>
	<title><![CDATA[Bioinformatics in Africa: Part7 - Tunisia]]></title>
	<description><![CDATA[<p>Institut Pasteur de Tunis (IPT):<br />The IPT is a research institution founded in 1883. IPT is under the supervision of the Ministry of &nbsp;Health and is part of the Universit&eacute; El Manar of Tunis (Ministry of high Education). The missions &nbsp;of the institute are: Public Health Laboratory activities (PHL), Research on infectious diseases, and &nbsp;R/D on vaccines. Research programs are mainly oriented towards local health problems such as &nbsp;leishmaniais, viral hepatitis, and scorpion venoms. The &nbsp; group &nbsp; of &nbsp; Bioinformatics &nbsp; and &nbsp; Modelling &nbsp; of &nbsp; the &nbsp; IPT &nbsp; is &nbsp; hosted &nbsp; by &nbsp; the &nbsp;Laboratoire &nbsp;d&rsquo;Immunopathologie Vaccinologie et G&eacute;n&eacute;tique Mol&eacute;culaire &nbsp;(LIVGM), and exists since the &nbsp;beginning of 2005. Its present research activities include: genome annotation, EST clustering and &nbsp;modelling of the host/parasite response to Leishmania infection. It consists of two senior scientists, &nbsp;two PhD students and one MSc student</p><p>Centre&nbsp;de&nbsp;Biotechnology&nbsp;de&nbsp;Sfax&nbsp;(CBS):<br />Bioinformatics&nbsp;activity&nbsp;started&nbsp;at&nbsp;CBS&nbsp;in&nbsp;2001&nbsp;with&nbsp;the&nbsp;setting&shy;up&nbsp;of&nbsp;a&nbsp;research&nbsp;and&nbsp;service&nbsp;unit&nbsp;of&nbsp; bioinformatics.&nbsp;This&nbsp;unit&nbsp;currently&nbsp;includes&nbsp;one&nbsp;senior&nbsp;researcher,&nbsp;one&nbsp;engineer&nbsp;and&nbsp;four&nbsp;Phd&nbsp; students.&nbsp;Activities&nbsp;include&nbsp;sequence&nbsp;annotation&nbsp;(service)&nbsp;and&nbsp;three&nbsp;research&nbsp;programs:&nbsp;ab&nbsp;initio&nbsp; prediction&nbsp;of&nbsp;short&nbsp;eukaryote&nbsp;genes,&nbsp;statistical&nbsp;modelling&nbsp;by&nbsp;Bayesian&nbsp;networks&nbsp;approach&nbsp;of&nbsp;signal&nbsp; transduction&nbsp;pathways&nbsp;and&nbsp;statistical&nbsp;analysis&nbsp;of&nbsp;human&nbsp;sequence&nbsp;variation&nbsp;data&nbsp;(haplotype&nbsp; reconstruction&nbsp;and&nbsp;linkage&nbsp;disequilibrium).&nbsp;Activities&nbsp;of&nbsp;the&nbsp;Bioinformatics&nbsp;unit&nbsp;could&nbsp;be&nbsp;found&nbsp;at&nbsp; the&nbsp;website:&nbsp;http://www.cbs.rnrt.tn/&nbsp;and&nbsp;the&nbsp;research&nbsp;activity&nbsp;report&nbsp;is&nbsp;available&nbsp;under&nbsp;request&nbsp;to&nbsp; Bioinformatics@cbs.rnrt.tn.&nbsp;Although&nbsp;the&nbsp;computing&nbsp;facilities&nbsp;are&nbsp;good,&nbsp;there&nbsp;is&nbsp;still&nbsp;a&nbsp;need&nbsp;for&nbsp; trained&nbsp;human&nbsp;resources&nbsp;to&nbsp;strengthen&nbsp;bioinformatics&nbsp;capacities&nbsp;at&nbsp;CBS,&nbsp;particularly&nbsp;in&nbsp;structural&nbsp; bioinformatics.</p><p>Web site and links: http://www.cbs.rnrt.tn</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/43550/basic-structure-of-snakemake-pipeline-run</guid>
	<pubDate>Thu, 14 Oct 2021 07:01:38 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43550/basic-structure-of-snakemake-pipeline-run</link>
	<title><![CDATA[Basic Structure of Snakemake Pipeline Run !]]></title>
	<description><![CDATA[<div>/user/snakemake-demo$ ls</div><div>config.json data envs scripts slurm-240702.out Snakefile</div><ul>
<li>data = mock data for the snakefile to use</li>
<li>Snakefile = name of the snakemake &ldquo;formula&rdquo; file
<ul>
<li>Note: The default file that snakemake looks for in the current working directory is the&nbsp;<code>Snakefile</code>. If you would like to override that you can specify it following the&nbsp;<code>-s</code>
<ul>
<li><code>snakemake -s snakefile.py</code></li>
</ul>
</li>
</ul>
</li>
<li>envs = directory for storing the conda environments that the workflow will use.</li>
<li>scripts = directory for storing python scripts called by the snakemake formula.</li>
<li>config.json = json format file with extra parameters for our snakemake file to use.</li>
<li>cluster.json = json format file with specification for running on the HPC</li>
<li>samples.txt = file we will use later relating to the config.json file.</li>
</ul><p><span>Run the snakemake file as a dry run (the example workflow shown above).</span></p><ul>
<li>This will build a DAG of the jobs to be run without actually executing them.</li>
<li><code>snakemake --dry-run</code></li>
</ul><p>User can e<span>xecute rules of interest.</span></p><ul>
<li><code>snakemake --dry-run all</code>&nbsp;VS.&nbsp;<code>snakemake --dry-run call</code>&nbsp;VS.&nbsp;<code>snakemake --dry-run bwa</code></li>
</ul><p><span>Run the snakemake file in order to produce an image of the DAG of jobs to be run.</span></p><ul>
<li><code>snakemake --dag | dot -Tsvg &gt; dag.svg</code>&nbsp;OR&nbsp;<code>snakemake --dag | dot -Tsvg &gt; dag.svg</code></li>
</ul><p>Run the snakemake (this time not as a dry run)</p><ol>
<li><code>snakemake --use-conda</code></li>
</ol>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>

</channel>
</rss>