<?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/42664?offset=30</link>
	<atom:link href="https://bioinformaticsonline.com/related/42664?offset=30" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/9639/find-certain-filesdocuments-in-linux-os</guid>
	<pubDate>Sun, 06 Apr 2014 23:56:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/9639/find-certain-filesdocuments-in-linux-os</link>
	<title><![CDATA[Find certain files/documents in Linux OS]]></title>
	<description><![CDATA[<p>As bioinformatician I know the fact that we usually handle the large dataset and lost in the huge numbers of files and folders. In order to search the missing file a strong search command is required. The Linux Find Command is one of the most important and much used command in Linux sytems. Find command used to search and locate list of files and directories based on conditions you specify for files that match the arguments. Find can be used in variety of conditions like you can find files by permissions, users, groups, file type, date, size and other possible criteria.<br /><br />Through this article we are sharing our day-to-day Linux find command experience and its usage in the form of examples. In this article we will show you the most used 35 Find Commands examples in Linux. We have divided the section into Five parts from basic to advance usage of find command.</p><p><strong>Part I &ndash; Basic Find Commands for Finding Files with Names</strong><br />1. Find Files Using Name in Current Directory<br /><br />Find all the files whose name is gene.txt in a current working directory.<br /><br /># find . -name gene.txt<br /><br />./gene.txt<br /><br />2. Find Files Under Home Directory<br /><br />Find all the files under /home directory with name gene.txt.<br /><br /># find /home -name gene.txt<br /><br />/home/gene.txt<br /><br />3. Find Files Using Name and Ignoring Case<br /><br />Find all the files whose name is gene.txt and contains both capital and small letters in /home directory.<br /><br /># find /home -iname gene.txt<br /><br />./gene.txt<br />./Gene.txt<br /><br />4. Find Directories Using Name<br /><br />Find all directories whose name is Gene in / directory.<br /><br /># find / -type d -name Gene<br /><br />/Gene<br /><br />5. Find fasta Files Using Name<br /><br />Find all php files whose name is gene.fasta in a current working directory.<br /><br /># find . -type f -name gene.fasta<br /><br />./gene.fasta<br /><br />6. Find all PHP Files in Directory<br /><br />Find all fasta files in a directory.<br /><br /># find . -type f -name "*.fasta"<br /><br />./gene.fasta<br />./cancer.fasta<br />./allgene.fasta<br /><br /><strong>Part II &ndash; Find Files Based on their Permissions</strong><br />7. Find Files With 777 Permissions<br /><br />Find all the files whose permissions are 777.<br /><br /># find . -type f -perm 0777 -print<br /><br />8. Find Files Without 777 Permissions<br /><br />Find all the files without permission 777.<br /><br /># find / -type f ! -perm 777<br /><br />9. Find SGID Files with 644 Permissions<br /><br />Find all the SGID bit files whose permissions set to 644.<br /><br /># find / -perm 2644<br /><br />10. Find Sticky Bit Files with 551 Permissions<br /><br />Find all the Sticky Bit set files whose permission are 551.<br /><br /># find / -perm 1551<br /><br />11. Find SUID Files<br /><br />Find all SUID set files.<br /><br /># find / -perm /u=s<br /><br />12. Find SGID Files<br /><br />Find all SGID set files.<br /><br /># find / -perm /g+s<br /><br />13. Find Read Only Files<br /><br />Find all Read Only files.<br /><br /># find / -perm /u=r<br /><br />14. Find Executable Files<br /><br />Find all Executable files.<br /><br /># find / -perm /a=x<br /><br />15. Find Files with 777 Permissions and Chmod to 644<br /><br />Find all 777 permission files and use chmod command to set permissions to 644.<br /><br /># find / -type f -perm 0777 -print -exec chmod 644 {} \;<br /><br />16. Find Directories with 777 Permissions and Chmod to 755<br /><br />Find all 777 permission directories and use chmod command to set permissions to 755.<br /><br /># find / -type d -perm 777 -print -exec chmod 755 {} \;<br /><br />17. Find and remove single File<br /><br />To find a single file called gene.txt and remove it.<br /><br /># find . -type f -name "gene.txt" -exec rm -f {} \;<br /><br />18. Find and remove Multiple File<br /><br />To find and remove multiple files such as .fa or .gb, then use.<br /><br /># find . -type f -name "*.fa" -exec rm -f {} \;<br /><br />OR<br /><br /># find . -type f -name "*.gb" -exec rm -f {} \;<br /><br />19. Find all Empty Files<br /><br />To file all empty files under certain path.<br /><br /># find /tmp -type f -empty<br /><br />20. Find all Empty Directories<br /><br />To file all empty directories under certain path.<br /><br /># find /tmp -type d -empty<br /><br />21. File all Hidden Files<br /><br />To find all hidden files, use below command.<br /><br /># find /tmp -type f -name ".*"<br /><br /><strong>Part III &ndash; Search Files Based On Owners and Groups</strong><br />22. Find Single File Based on User<br /><br />To find all or single file called gene.txt under / root directory of owner root.<br /><br /># find / -user root -name gene.txt<br /><br />23. Find all Files Based on User<br /><br />To find all files that belongs to user Rahul under /home directory.<br /><br /># find /home -user rahul<br /><br />24. Find all Files Based on Group<br /><br />To find all files that belongs to group Developer under /home directory.<br /><br /># find /home -group developer<br /><br />25. Find Particular Files of User<br /><br />To find all .txt files of user Rahul under /home directory.<br /><br /># find /home -user rahul -iname "*.txt"<br /><br /><strong>Part IV &ndash; Find Files and Directories Based on Date and Time</strong><br />26. Find Last 50 Days Modified Files<br /><br />To find all the files which are modified 50 days back.<br /><br /># find / -mtime 50<br /><br />27. Find Last 50 Days Accessed Files<br /><br />To find all the files which are accessed 50 days back.<br /><br /># find / -atime 50<br /><br />28. Find Last 50-100 Days Modified Files<br /><br />To find all the files which are modified more than 50 days back and less than 100 days.<br /><br /># find / -mtime +50 &ndash;mtime -100<br /><br />29. Find Changed Files in Last 1 Hour<br /><br />To find all the files which are changed in last 1 hour.<br /><br /># find / -cmin -60<br /><br />30. Find Modified Files in Last 1 Hour<br /><br />To find all the files which are modified in last 1 hour.<br /><br /># find / -mmin -60<br /><br />31. Find Accessed Files in Last 1 Hour<br /><br />To find all the files which are accessed in last 1 hour.<br /><br /># find / -amin -60<br /><br /><strong>Part V &ndash; Find Files and Directories Based on Size</strong><br />32. Find 50MB Files<br /><br />To find all 50MB files, use.<br /><br /># find / -size 50M<br /><br />33. Find Size between 50MB &ndash; 100MB<br /><br />To find all the files which are greater than 50MB and less than 100MB.<br /><br /># find / -size +50M -size -100M<br /><br />34. Find and Delete 100MB Files<br /><br />To find all 100MB files and delete them using one single command.<br /><br /># find / -size +100M -exec rm -rf {} \;<br /><br />35. Find Specific Files and Delete<br /><br />Find all .gb files with more than 10MB and delete them using one single command.<br /><br /># find / -type f -name *.gb -size +10M -exec rm {} \;</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/42793/fully-funded-position-as-phd-research-fellow-in-genomicsbioinformatics</guid>
  <pubDate>Wed, 03 Feb 2021 04:18:57 -0600</pubDate>
  <link></link>
  <title><![CDATA[Fully funded position as PhD Research Fellow in genomics/bioinformatics]]></title>
  <description><![CDATA[
<p>A fully funded position as PhD Research Fellow in genomics/bioinformatics is available at the Section for Genetics and Evolutionary Biology (EVOGENE) at the Department of Biosciences, University of Oslo.</p>

<p>The fellowship will be for a period of 3 years, or for a period of 4 years, with 25 % compulsory work (e.g. teaching responsibilities at the department) contingent on the qualifications of the candidate and the teaching needs of the department.</p>

<p>Starting date no later than October 1, 2021.</p>

<p>More at https://www.jobbnorge.no/en/available-jobs/job/199984/phd-research-fellow-in-genomics-and-bioinformatics</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44516/16srna-database-download</guid>
	<pubDate>Wed, 24 Apr 2024 04:33:15 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44516/16srna-database-download</link>
	<title><![CDATA[16sRNA Database Download]]></title>
	<description><![CDATA[<p>Downloading 16S rRNA databases can be crucial for various bioinformatics analyses, especially in microbiome research. However, it's important to note that databases can vary based on your specific needs, such as the taxonomic coverage you require or the type of analysis you're performing. Here's a general guideline on how you can obtain 16S rRNA databases:</p><ol>
<li>
<p><span>NCBI (National Center for Biotechnology Information)</span>:</p>
<ul>
<li>NCBI provides various databases related to genetic information, including 16S rRNA sequences.</li>
<li>You can access the 16S ribosomal RNA sequences from NCBI's Nucleotide database (<a href="https://www.ncbi.nlm.nih.gov/nucleotide/" target="_new">https://www.ncbi.nlm.nih.gov/nucleotide/</a>).</li>
<li>Perform a search using keywords like "16S rRNA" or specific bacterial names to find relevant sequences.</li>
<li>You can download sequences individually or in batches using the provided tools.</li>
</ul>
</li>
<li>
<p><span>GreenGenes</span>:</p>
<ul>
<li>GreenGenes is a widely used 16S rRNA gene sequence database.</li>
<li>You can access it at <a target="_new">http://greengenes.secondgenome.com/</a>.</li>
<li>GreenGenes provides precompiled databases for various purposes, including classification, alignment, and phylogenetic analysis.</li>
</ul>
</li>
<li>
<p><span>SILVA</span>:</p>
<ul>
<li>SILVA (<a href="https://www.arb-silva.de/" target="_new">https://www.arb-silva.de/</a>) is another comprehensive database for ribosomal RNA (rRNA) sequences.</li>
<li>It covers not only 16S rRNA but also other ribosomal RNA sequences.</li>
<li>SILVA provides precompiled databases for various purposes, including taxonomic classification and alignment.</li>
</ul>
</li>
<li>
<p><span>Ribosomal Database Project (RDP)</span>:</p>
<ul>
<li>RDP (<a target="_new">http://rdp.cme.msu.edu/</a>) is a curated database that offers 16S rRNA sequences.</li>
<li>It provides tools for sequence analysis and classification.</li>
<li>You can download sequences and taxonomy information from their website.</li>
</ul>
</li>
<li>
<p><span>QIIME (Quantitative Insights Into Microbial Ecology)</span>:</p>
<ul>
<li>QIIME (<a href="https://qiime2.org/" target="_new">https://qiime2.org/</a>) is a widely used bioinformatics platform for microbiome analysis.</li>
<li>It provides tools for analyzing microbial communities, including processing 16S rRNA sequences.</li>
<li>QIIME often includes its own preprocessed 16S rRNA databases that can be used for analysis within the platform.</li>
</ul>
</li>
</ol><p>Before downloading any database, make sure to read the terms of use and citation requirements, as some databases may have specific usage policies. Additionally, consider the compatibility of the database with your analysis pipeline and software tools.</p><p>&nbsp;</p><p>NCBI 16s RNA database location&nbsp;ftp://ftp.ncbi.nih.gov/blast/db/16SMicrobial.tar.gz</p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/13337/phd-opportunity-at-universite-de-liege-belgium</guid>
  <pubDate>Sat, 02 Aug 2014 01:12:43 -0500</pubDate>
  <link></link>
  <title><![CDATA[PhD opportunity at Université de Liège - Belgium]]></title>
  <description><![CDATA[
<p>PhD opportunity at Université de Liège - Belgium</p>

<p>The Bioinformatics and Systems Biology Unit of Université de Liège (Belgium) is looking for a highly motivated master student with programming skills for a PhD thesis project (4 years, fully funded) with the goal of designing computational tools that use literature, genomic and structural data in order to infer regulatory and metabolic networks.  </p>

<p>Applicants are invited to send their resume and a recommendation letter to Prof. Patrick Meyer (more details at   www.biosys.ulg.ac.be )</p>

<p>For more information : www.biosys.ulg.ac.be</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/19597/assistant-professor-at-gauhati-university-guwahati</guid>
  <pubDate>Tue, 16 Dec 2014 01:15:30 -0600</pubDate>
  <link></link>
  <title><![CDATA[Assistant Professor at GAUHATI UNIVERSITY, GUWAHATI]]></title>
  <description><![CDATA[
<p>Advt. No.T/2014/4</p>

<p>Ref. No. GU/Estt/T/308(VI)/2014/6451-61</p>

<p>Applications are invited from the Indian citizens for five (5) teaching posts of Assistant Professor (Contractual) under various departments of Gauhati University. Details of the advertisement, other terms and conditions and the application forms are available in the University website www.gauhati.ac.in</p>

<p>Asstt. Professor (Contractual)</p>

<p>    2. M.Sc. Microbiology Course in Botany</p>

<p>    3 1.M.Sc. Microbiology/M.Sc. Botany (Specialization in Microbiology)/M.Sc. Biochemistry (1 post). (Preference will be given to candidates having experience in Biochemistry).</p>

<p>    2.M.Sc. Microbiology/M.Sc. Botany (Specialization in Microbiology)/M.Sc. Biotechnology(1 post). (Preference will be given to candidates having experience in Bioinformatics).</p>

<p>    3.M.Sc. Microbiology/M.Sc. Botany (Specialization in Microbiology)/M.Sc.  Biotechnology(1 post). (Preference will be given to candidates having experience in Microbial Genetics).</p>

<p>As per UGC norms</p>

<p>Pay Band &amp; Academic Grade Pay : (Consolidated pay) : Rs. 21,600/- per month</p>

<p>Application Form : Prescribe application form may download from the G.U. website www.gauhati.ac.in</p>

<p>Last date of receipt of filled-in application is 08.01.2015.</p>

<p>Advertisement: www.gauhati.ac.in/openfile.php?file=Notice1258.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/24264/cancer-research-database</guid>
	<pubDate>Tue, 01 Sep 2015 17:36:31 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/24264/cancer-research-database</link>
	<title><![CDATA[Cancer research database]]></title>
	<description><![CDATA[<p>Researchers in Andhra Pradesh have developed a database to identify genes that are common in tumours to provide their colleagues with easy access to insights into the genetic alterations in cancer.<br /> &nbsp;<br /> The database, hosted at the Sri Venkateswara University (SVU) in Tirupati, will integrate information on cancer genes and markers with experimental data.<br /> &nbsp;<br /> The <a href="http://cgmd.in/" target="_blank">Cancer Gene Markers Database</a> (CGMD) is meant to help scientists better understand tumour genes and markers at a molecular level by combining data with literature on treatment regimen and recent advances in cancer therapy.<br /> <br /> The database is free to access, and already includes 309 genes and 206 markers that correspond to 40 different human cancers. Accompanying literature comes from databases such as the United States&rsquo; <a href="http://www.ncbi.nlm.nih.gov/" target="_blank">National Center for Biotechnology Information</a> and the <a href="http://www.genome.jp/kegg/" target="_blank">Kyoto Encyclopedia of Genes and Genomes</a>. It also includes experimental data from <a href="http://www.ncbi.nlm.nih.gov/pubmed" target="_blank">PubMed</a>.<br /> <br /> In a paper <a href="http://dx.doi.org/10.1038/srep12035" target="_blank">published</a> last month in <em>Nature Scientific Reports</em>, the researchers from SVU&rsquo;s department of animal biotechnology, describes the need for a database for different genes and markers along with their molecular characteristics and pathway associations.</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/26827/kamaleshwar-singh-lab</guid>
  <pubDate>Fri, 25 Mar 2016 10:46:49 -0500</pubDate>
  <link></link>
  <title><![CDATA[Kamaleshwar Singh Lab]]></title>
  <description><![CDATA[
<p>The focus of Dr. Singh’s research and teaching is on the molecular mechanistic basis for environmental carcinogen-induced genetic (DNA damage) and epigenetic changes, and susceptibility to human cancer development</p>

<p>More at http://www.tiehh.ttu.edu/dr.-kamaleshwar-singh.html</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26303/maker</guid>
	<pubDate>Sun, 07 Feb 2016 15:59:24 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26303/maker</link>
	<title><![CDATA[MAKER]]></title>
	<description><![CDATA[<p>MAKER is a portable and easily configurable genome annotation pipeline.Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. MAKER identifies repeats, aligns ESTs and proteins to a genome, produces ab-initio gene predictions and automatically synthesizes these data into gene annotations having evidence-based quality values.</p>
<p>More at http://www.yandell-lab.org/software/maker.html</p><p>Address of the bookmark: <a href="http://www.yandell-lab.org/software/maker.html" rel="nofollow">http://www.yandell-lab.org/software/maker.html</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/26850/wellcome-trustdbt-india-alliance-margdarshi-fellowships-2016</guid>
  <pubDate>Tue, 29 Mar 2016 17:47:39 -0500</pubDate>
  <link></link>
  <title><![CDATA[Wellcome Trust/DBT India Alliance Margdarshi Fellowships 2016]]></title>
  <description><![CDATA[
<p>The Wellcome Trust/DBT India Alliance invites application for the Margdarshi Fellowship scheme. The scheme provides a unique opportunity for visionary biomedical scientists to lead and nucleate a cutting edge research program in India in collaboration with Indian Host Institution(s). The potential candidates and the Host Institution are encouraged to make a synergistic effort towards establishing a centre of excellence that aims to improve the existing scientific breadth and utilizes the experience of the lead applicant for developing new research platforms. In addition to this, under this programme two eligible Indian institutions may also come together towards creating a new program under the leadership of a visionary scientist.</p>

<p>Eligibility</p>

<p>Interested applicants must</p>

<p>Have around 10 years of experience as independent investigator, and can be of any age or nationality<br />Have Sponsor(s) at not-for-profit Host Institution(s) in India, who is willing to extend the desired commitment and resources for program implementation<br />Provisions</p>

<p>The 5 year Fellowship provides</p>

<p>Generous personal support for the Fellow<br />Salary support for personnel, which may include Assistant Professors<br />Large quantum of funds for equipment, animals and consumables<br />Funds to attend scientific gatherings, for collaborative visits and to organize meetings<br />Overheads for the Host Institution<br />Process</p>

<p>A joint online application is invited from the Applicant and the Sponsor(s). The details of the scheme and the funding mechanism are available on the website at http://wellcomedbt.org/fellowshiptype/margdarshi-fellowships.</p>

<p>Application form can be accessed at https://fellowships.wellcomedbt.org/Login.aspx</p>

<p>Sponsored applications due by 2 May 2016</p>

<p>Send your inquiries to margdarshi@wellcomedbt.org</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/31523/research-associate-bioinformatics-recruitment-in-national-bureau-of-plant-genetic-resources</guid>
  <pubDate>Fri, 10 Mar 2017 06:50:51 -0600</pubDate>
  <link></link>
  <title><![CDATA[Research Associate Bioinformatics recruitment in National Bureau of Plant Genetic Resources]]></title>
  <description><![CDATA[
<p>Name of Project  : Indo-UK Centre for improvement of Nitrogen use efficiency in wheat Dr. Soma S. Marla, Pr. Scientist (Bioinformatics), Division of Genomic Resources, ICAR, NBPGR, ND. </p>

<p>No. of Post : 01</p>

<p>Qualification : A doctoral (Ph.D). Degree in Bioinformatics OR 1. Masters degree in Bioinformatics or Computer Sciences having 1st division or 60% marks or equivalent overall grade point with at least two years of research experience as evidenced from Fellowship/ Associate ship. 2. NET or equivalent national level examination qualification is essential for the candidates with 3+2 years (B.Sc.+ M.Sc) pattern. Desirable: Demonstrated experience &amp; skills in database design, management, UNIX OS, HPC environment inbased NGS data analysis. Experience substantiated by publications of high quality will be preferred.</p>

<p>Emoluments : Rs. 40,000 (Ph.D)/ Rs + 30 % HRA; 38,000 (Masters) Degree + 30 % HRA.<br />Hiring Process : Walk - In<br />Job Role: Research/JRF/SRF</p>

<p>Candidates should appear by 10.00 AM on 16.03.2016 for registration with relevant documents in the room B4, Bioinformatics Lab, ICAR.NBPGR. old campus, Inderpuri, New Delhi.</p>

<p>The candidates who wish to attend the walk-in interview are requested to bring with them five copies of the CV (one copy with photograph) as per the format given below. Also, the candidates should bring the original documents such as DOB, degree certificates, marks sheets, publications, thesis, experience certificate etc. for verification.</p>

<p>http://www.nbpgr.ernet.in/Downloadfile.aspx?EntryId=7284</p>
]]></description>
</item>

</channel>
</rss>