<?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/31345?offset=380</link>
	<atom:link href="https://bioinformaticsonline.com/related/31345?offset=380" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/5623/yau-group</guid>
  <pubDate>Tue, 15 Oct 2013 13:05:15 -0500</pubDate>
  <link></link>
  <title><![CDATA[Yau Group]]></title>
  <description><![CDATA[
<p>Yau Group are a new research group based at the Wellcome Trust Centre for Human Genetics and the Department of Statistics at the University of Oxford.</p>

<p>Yau Group develops statistical and computational methods for the analysis of genomic datasets with a particular interest in cancer sequencing applications and the use of Bayesian Statistics.</p>

<p>Yau Group are currently have projects in somatic mutation analysis of heterogeneous cancers, data fusion or integration techniques and single cell genomics.</p>

<p>More @ http://www.well.ox.ac.uk/~cyau/index.html</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/42936/ancient-whole-genome-duplication-wgd-detection-tools</guid>
	<pubDate>Sun, 07 Mar 2021 00:32:44 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42936/ancient-whole-genome-duplication-wgd-detection-tools</link>
	<title><![CDATA[Ancient whole genome duplication (WGD) detection tools !]]></title>
	<description><![CDATA[<p>There are two methods for ancient WGD detection, one is collinearity analysis, and the other is based on the Ks distribution map. Among them, Ks is defined as the average number of synonymous substitutions at each synonymous site, and there is also a Ka corresponding to it, which refers to the average number of non-synonymous substitutions at each non-synonymous site.</p><p>At present, some people have posted articles about the analysis process of WGD. I searched for the keyword "wgd pipeline" and found the following:</p><p><strong>GenoDup: https:// github.com/MaoYafei/GenoDup-Pipeline</strong><br /><strong>https://peerj.com/articles/6303/</strong><br /><strong>WGDdetector: https:// github.com/yongzhiyang2 012/WGDdetector</strong><br /><strong>https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-019-2670-3</strong><br /><strong>wgd: https:// github.com/arzwa/wgd</strong><br /><strong>https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-016-1142-2#Sec1</strong><br /><strong>https://bmcbiol.biomedcentral.com/articles/10.1186/s12915-017-0399-x</strong><br /><strong>GeNoGAP https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-016-1142-2</strong><br /><strong>https://bmcbiol.biomedcentral.com/articles/10.1186/s12915-017-0399-x</strong><br /><strong>https://github.com/dfguan/purge_dups</strong><br /><strong>https://www.biorxiv.org/content/10.1101/2020.01.24.917997v1</strong></p><p>This article introduces the usage of wgd.</p><p>Wgd cannot be installed directly with bioconda at present, so it is a little troublesome to install, because it depends on a lot of software. wgd depends on the following software</p><p><strong>BLAST</strong><br /><strong>MCL</strong><br /><strong>MUSCLE/MAFFT/PRANK</strong><br /><strong>PAML</strong><br /><strong>PhyML/FastTree</strong><br /><strong>i-ADHoRe</strong></p><p>But the good news is that most of the software it depends on can be installed with bioconda</p><blockquote><p>conda create -n wgd python=3.5 blast mcl muscle mafft prank paml fasttree cmake libpng mpi=1.0=mpich<br />conda activate wgd</p></blockquote><p>Here mpi=1.0=mpich is selected, because i-adhore depends on mpich. If openmpi is installed, an error will appear while loading shared libraries: libmpi_cxx.so.40: cannot open shared object file: No such file or directory</p><p>After that, the installation is much simpler</p><blockquote><p>git clone https://github.com/arzwa/wgd.git<br />cd wgd<br />pip install .<br />pip install git+https://github.com/arzwa/wgd.git<br />For i-ADHoRe, you need to register at http:// bioinformatics.psb.ugent.be /webtools/i-adhore/licensing/Agree to the license to download i-ADHoRe-3.0</p></blockquote><p>Since my miniconda3 installed ~/opt/, the installation path is so~/opt/miniconda3/envs/wgd/</p><blockquote><p>tar -zxvf i-adhore-3.0.01.tar.gz<br />cd i-adhore-3.0.01<br />mkdir -p build &amp;&amp; cd build<br />cmake .. -DCMAKE_INSTALL_PREFIX=~/opt/miniconda3/envs/wgd/<br />make -j 4 <br />make insatall</p></blockquote><p>Take the sugarcane genome Saccharum spontaneum L as an example. The genome is 8-ploid with 32 chromosomes (2n = 4x8 = 32)</p><p><strong>Download the tutorial for CDS and GFF annotation files</strong></p><blockquote><p><strong>mkdir -p wgd_tutorial &amp;&amp; cd wgd_tutorial</strong><br /><strong>wget http://www.life.illinois.edu/ming/downloads/Spontaneum_genome/Sspon.v20190103.cds.fasta.gz</strong><br /><strong>wget http://www.life.illinois.edu/ming/downloads/Spontaneum_genome/Sspon.v20190103.gff3.gz</strong><br /><strong>gunzip *.gz</strong></p></blockquote><p>First conda activate wgdstart our analysis environment, and then start the analysis</p><p>Step 1 : Use to wgd mclidentify homologous genes in the genome</p><blockquote><p>wgd mcl -n 20 --cds --mcl -s Sspon.v20190103.cds.fasta -o Sspon_cds.out</p></blockquote><p>Step 2 : Use to wgd ksdbuild Ks distribution</p><blockquote><p>wgd ksd --n_threads 80 Sspon_cds.out/Sspon.v20190103.cds.fasta.blast.tsv.mcl Sspon.v20190103.cds.fasta</p></blockquote><p>Step 3 : If the quality of the genome is good, then wgd syncollinearity analysis can be used . It can help us find the collinearity block in the genome and the corresponding anchor point</p><blockquote><p>wgd syn --feature gene --gene_attribute ID \<br /> -ks wgd_ksd/Sspon.v20190103.cds.fasta.ks.tsv \<br /> Sspon.v20190103.gff3 Sspon_cds.out/Sspon.v20190103.cds.fasta.blast.tsv.mcl</p></blockquote><p>&nbsp;For more reading - There are 9 sub-modules in WGD</p><ul>
<li><span>kde: KDE fitting to the Ks distribution</span></li>
<li><span>ksd: Ks distribution construction</span></li>
<li><span>mcl: BLASP comparison of All-vs-ALl + MCL classification analysis.</span></li>
<li><span><span>mix: Hybrid modeling of Ks distribution.</span></span></li>
<li><span>pre: preprocess the CDS file</span></li>
<li><span>syn: Call I-ADHoRe 3.0 to use GFF files for collinearity analysis</span></li>
<li><span>viz: draw histogram and density plot</span></li>
<li><span>wf1: Ks standard analysis procedure of the whole genome paranome (paranome), call mcl, ksd and syn</span></li>
<li><span>wf2: Ks standard analysis procedure of one-vs-one homologous gene (ortholog), call wcl and kSD</span></li>
</ul>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/7218/associate-professor-centre-for-bioinformatics-at-maharshi-dayanand-university-rohtak</guid>
  <pubDate>Thu, 12 Dec 2013 20:49:59 -0600</pubDate>
  <link></link>
  <title><![CDATA[Associate Professor - Centre for Bioinformatics at Maharshi Dayanand University, Rohtak]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT No. PR-54/2013</p>

<p>No. of Posts and Specialization: 1(UR)</p>

<p>Educational Qualification:</p>

<p>(i) Good academic record with a Ph.D. Degree in the concerned /allied /relevant disciplines.</p>

<p>(ii) The Ph.D. Degree shall be a mandatory qualification for all candidates to be appointed as Associate Professor through direct recruitment.</p>

<p>(iii) A Master‟s Degree with at least 55% marks (or an equivalent grade in a point scale wherever grading system is followed).</p>

<p>(iv) A minimum of eight years of experience of teaching and /or research in an academic /research position equivalent to that of Assistant Professor in a University, College or Accredited Research Institution/Industry excluding the period of Ph.D research with evidence of published work and a minimum of 5 publications as books and /or research papers in refereed journals only/policy papers.</p>

<p>(v) Contribution to educations innovation, design of new curricula and courses and technology-mediated teaching learning process with evidence of having guided doctoral candidates and research students.</p>

<p>(vi) A minimum score as stipulated in the Academic Performance Indicator (API) based performance Based Appraisal System (PBAS), set out in this notification in as mentioned in the advertisement.</p>

<p>Send your application to the A.R (Estt.Teaching), M.D.University, Rohtak on or before December 23, 2013.</p>

<p>For more details: http://www.mdurohtak.ac.in/pdf/Notices_Pdf/new_notice/Teaching%20Vacancy%20%28ADVT.%20No.%20PR-54%20of%202013%29.pdf</p>

<p>Last Apply Date: 23 Dec 2013</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/43293/josefa-gonzalez-lab</guid>
  <pubDate>Thu, 19 Aug 2021 08:52:56 -0500</pubDate>
  <link></link>
  <title><![CDATA[Josefa González Lab]]></title>
  <description><![CDATA[
<p>Lab focus on understanding how organisms adapt to their environments. They combine omics approaches with detailed molecular and phenotypic analyses to get a comprehensive picture of adaptation. Our aim at being internationally recognized as a leading lab in the field of environmental adaptation.<br />Lab share our passion for science with the general public by leading outreach projects aimed at increasing science awareness.</p>

<p>More at https://www.biologiaevolutiva.org/gonzalez_lab/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/5888/nit-calicut-faculty-jobs-2013-in-bioinformatics</guid>
  <pubDate>Thu, 24 Oct 2013 13:00:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[NIT Calicut Faculty Jobs 2013 in Bioinformatics]]></title>
  <description><![CDATA[
<p>NATIONAL INSTITUTE OF TECHNOLOGY CALICUT, KERALA</p>

<p>NOTIFICATION FOR FACULTY RECRUITMENT – 2013</p>

<p>(Faculty openings in Technology, Science, Architecture and Management at NIT Calicut, Kerala)</p>

<p>National Institute of Technology Calicut, Kerala, established under Act XXIX/ 2007of the Parliament is one of the leading technological institutions in the Country with nearly 6000 students enrolled for various UG, PG and Ph.D. programmes in Technology, Science, Architecture and Management. The Institute invites applications from Indian nationals, possessing consistent excellent academic record, commitment to quality teaching and potential for carrying out outstanding research, for the post of Assistant Professors in various departments against the backlog reserved vacancies for Scheduled Caste (SC), Scheduled Tribe (ST), Other Backward Communities (OBC) and Persons with Disabilities (PWDs) and also under open merit quota as detailed below. Candidates belonging to SC, ST and OBC desirous of considering for selection under UR category also shall specifically indicate so in column 4.</p>

<p>Reservation quota for PWDs will be counted against the respective community. Young, meritorious, dynamic and student friendly academicians are welcome to join hands with the existing team in their effort to transform this Institute to a world class educational institution.</p>

<p>Candidates possessing Ph.D. degree will be considered for appointment on contract basis initially.</p>

<p>They will be considered for movement to AGP `7000 after one year of satisfactory performance.</p>

<p>Meritorious candidates possessing M.Tech./M.Phil. (*) with remarkably good potential to carry out outstanding research and already pursuing Ph.D. or aspiring to pursue Ph.D. will also be considered for appointment on contract, initially for a period of 3 years, extendable for a further period of 2 years on a year to year basis or till the candidate acquires Ph.D. degree whichever is earlier. Renewal of contract<br />will be done on an annual basis, subject to satisfactory progress of Ph.D. work, good conduct and good performance in teaching. Faculty appointed on contract basis will not be treated as regular staff till they are regularized, subject to the conditions stated earlier. The Institute has adopted 4-tier flexible faculty structure recommended by MHRD. </p>

<p>More Info : http://www.nitc.ac.in/index.php/?url=content/submenu/2345/5</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43661/maftools</guid>
	<pubDate>Fri, 17 Dec 2021 03:18:28 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43661/maftools</link>
	<title><![CDATA[maftools]]></title>
	<description><![CDATA[<p>With advances in Cancer Genomics, <a href="https://docs.gdc.cancer.gov/Data/File_Formats/MAF_Format/">Mutation Annotation Format</a> (MAF) is being widely accepted and used to store somatic variants detected. <a href="http://cancergenome.nih.gov">The Cancer Genome Atlas</a> Project has sequenced over 30 different cancers with sample size of each cancer type being over 200. <a href="https://wiki.nci.nih.gov/display/TCGA/TCGA+MAF+Files">Resulting data</a> consisting of somatic variants are stored in the form of <a href="https://docs.gdc.cancer.gov/Data/File_Formats/MAF_Format/">Mutation Annotation Format</a>. This package attempts to summarize, analyze, annotate and visualize MAF files in an efficient manner from either TCGA sources or any in-house studies as long as the data is in MAF format.</p>
<p>https://www.bioconductor.org/packages/devel/bioc/vignettes/maftools/inst/doc/maftools.html</p><p>Address of the bookmark: <a href="https://github.com/PoisonAlien/maftools" rel="nofollow">https://github.com/PoisonAlien/maftools</a></p>]]></description>
	<dc:creator>Surabhi Chaudhary</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/5958/srfjrf-national-institute-of-immunology</guid>
  <pubDate>Wed, 30 Oct 2013 06:45:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[SRF/JRF @ National Institute of Immunology]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT OF WALK-IN-INTERVIEW</p>

<p>NAME OF THE POST : SRF/JRF (Four Posts only)</p>

<p>DURATION : Indicated with the respective project mentioned below:</p>

<p>NAME OF THE PROJECT : As Mentioned below:</p>

<p>1. Serological diversity and molecular characterization of Dichelobector nodusus and development of vaccine against virulent footroot funded by NAIP. (Tenable upto 31.03.2014)</p>

<p>2. Development of oral vaccine against Clostridium perfringenes employing translational fusion of immunodominant epitopes of beta toxin with heat labile entertoxin B funded by DBT. (Tenable upto 25.02.2014)</p>

<p>3. Indo-Norwegian project, “Evaluation of major porins, ompC and ompR of Areomonas hydrophila as potential vaccine candidates and identification and characterization of immune genes of Indian major carp, Labeo rohita” (Tenable upto 31.03.2014)</p>

<p>EDUCATIONAL QUALIFICATIONS: For JRF- M.Sc/M.Tech in any subject of Biological  Sciences/Life Sciences</p>

<p>For SRF- M.Sc/M.Tech in any subject of Biological Sciences/Life Sciences with 2 years of Research Experience.</p>

<p>JOB DESCRIPTION : The Candidate should have experience in gene Expression, protein purification, molecular biology techniques and bioinformatics<br />EMOLUMENTS : SRF: Rs. 18,000/- per month consolidated plus 30% HRA if /NET/GATE qualified otherwise Rs. 14,000/- per month consolidated + 30% HRA.</p>

<p>JRF: Rs. 16,000/- per month consolidated + 30% HRA if NET/GATE qualified otherwise Rs. 12,000/- per month consolidated + 30% HRA</p>

<p>SCIENTIST NAME : Dr. Lalit C. Garg, SS-VII (Gene Regulation Lab)</p>

<p>SCIENTIST’S EMAIL : lalit@nii.ac.in</p>

<p>WALK IN INTERVIEW ON : October 31st, 2013</p>

<p>REGISTRATION OF CANDIDATES: 10.30 AM to 11.00 AM </p>

<p>Advertisement: http://www1.nii.res.in/sites/default/files/project-Dr.Lalit-31oct2013.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43770/chromeister-an-ultra-fast-heuristic-approach-to-detect-conserved-signals-in-extremely-large-pairwise-genome-comparisons</guid>
	<pubDate>Thu, 03 Feb 2022 04:01:55 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43770/chromeister-an-ultra-fast-heuristic-approach-to-detect-conserved-signals-in-extremely-large-pairwise-genome-comparisons</link>
	<title><![CDATA[chromeister: An ultra fast, heuristic approach to detect conserved signals in extremely large pairwise genome comparisons.]]></title>
	<description><![CDATA[<p>chromeister: An ultra fast, heuristic approach to detect conserved signals in extremely large pairwise genome comparisons.</p>
<p dir="auto">USAGE:</p>
<ul dir="auto">
<li>-query: sequence A in fasta format</li>
<li>-db: sequence B in fasta format</li>
<li>-out: output matrix</li>
<li>-kmer Integer: k&gt;1 (default 32) Use 32 for chromosomes and genomes and 16 for small bacteria</li>
<li>-diffuse Integer: z&gt;0 (default 4) Use 4 for everything - if using large plant genomes you can try using 1</li>
<li>-dimension Size of the output matrix and plot. Integer: d&gt;0 (default 1000) Use 1000 for everything that is not full genome size, where 2000 is recommended</li>
</ul><p>Address of the bookmark: <a href="https://github.com/estebanpw/chromeister" rel="nofollow">https://github.com/estebanpw/chromeister</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6104/incob-2014</guid>
  <pubDate>Thu, 07 Nov 2013 17:53:36 -0600</pubDate>
  <link></link>
  <title><![CDATA[InCoB 2014]]></title>
  <description><![CDATA[
<p>The 13th International Conference on Bioinformatics (InCoB 2014) will be held in Novotel Sydney Brighton Beach, Sydney, New South Wales, Australia. This year, the InCoB will be held earlier from 31st July to 2nd August 2014 to run back-to-back with the International Biophysics Congress 2014 at the Brisbane Convention and Exhibition Centre, Queensland (3-7 Aug).</p>

<p>More at http://incob2014.org/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43846/the-complete-sequence-of-a-human-genome</guid>
	<pubDate>Thu, 31 Mar 2022 23:58:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43846/the-complete-sequence-of-a-human-genome</link>
	<title><![CDATA[The complete sequence of a human genome]]></title>
	<description><![CDATA[<p><span>The completed regions include all centromeric satellite arrays, recent segmental duplications, and the short arms of all five acrocentric chromosomes, unlocking these complex regions of the genome to variational and functional studies.</span></p><p>Address of the bookmark: <a href="https://www.science.org/doi/10.1126/science.abj6987" rel="nofollow">https://www.science.org/doi/10.1126/science.abj6987</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

</channel>
</rss>