<?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/42813?offset=700</link>
	<atom:link href="https://bioinformaticsonline.com/related/42813?offset=700" 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/researchlabs/view/9868/raghavas-group</guid>
  <pubDate>Tue, 15 Apr 2014 23:59:48 -0500</pubDate>
  <link></link>
  <title><![CDATA[Raghava's Group]]></title>
  <description><![CDATA[
<p>Raghava's group is known for developing open source software or web servers. Group have developed large number of web-based services.</p>

<p>Find more at http://www.imtech.res.in/raghava/</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/10127/assistant-professor-at-sardar-patel-university</guid>
  <pubDate>Mon, 21 Apr 2014 21:03:55 -0500</pubDate>
  <link></link>
  <title><![CDATA[Assistant Professor at SARDAR PATEL UNIVERSITY]]></title>
  <description><![CDATA[
<p>SARDAR PATEL UNIVERSITY<br />Centre for Interdisciplinary Studies in Science and Technology</p>

<p>No.: SPU/CISST/Advt./2014-15/519</p>

<p>ADVERTISEMENT for Teaching Positions (Contractual)</p>

<p>Applications for the following Contractual Teaching Position are invited for Centre for Interdisciplinary Studies in Science and Technology (CISST), Sardar Patel University:</p>

<p>2. Assistant Professor (ONE) (Contractual)</p>

<p>For the subject of Bioinformatics</p>

<p>Qualifications:</p>

<p>(I) Good academic record as defined by the concerned university with at least 55 % marks (or an equivalent grade in a point scale wherever grading system is followed) at the Master’s level</p>

<p>(II) Ph.D. degree in the concerned subject or in a relevant interdisciplinary subject<br />from an Indian University or NET/SLET clearance Contractual appointment carries a total Fixed Emoluments of Rs. 30,000/- p.m without any assurance of permanent Positions and related benefits.</p>

<p>An Application Form in prescribed Performa, available on University Website: www.spuvvn.edu should be filled in completely in Twelve Copies with self attested copies of certificates of qualifications and experience. Only one copy of each mark sheet be attached with the first copy of the application form. All 12 (Twelve) Application forms should be sent to Registrar’s office along with Demand Draft of Application form fee of Rs. 250/- (Non-refundable) in favour of “REGISTRAR, SARDAR PATEL UNIVERSITY, VALLABH VIDYANAGAR”. The S.C. and S.T. category candidates need not to pay Application fee.</p>

<p>Applicants who are in service should apply through their present employers. Candidates called for interview shall be required to attend at their own cost.</p>

<p>In absence of suitable candidate, the University may relax the eligibility criteria, for conditional appointment.</p>

<p>The last date of receipt of application by the University is 30th April, 2014</p>

<p>Advertisement: www.spuvvn.edu/careers/CISST%20Advt.%20April%202014.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/10394/bioinformatics-protocols</guid>
	<pubDate>Mon, 05 May 2014 10:21:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/10394/bioinformatics-protocols</link>
	<title><![CDATA[Bioinformatics Protocols]]></title>
	<description><![CDATA[<h2><span> RNA Seq </span></h2>
<p><strong> Basic Galaxy Tutorial </strong></p>
<ul>
<li><a href="https://docs.google.com/document/pub?id=1KbTiBHtvHLfPRZ39AY3uriazrINA8TJzgjjwn1zPP7Y">RNA-Seq tutorial</a> based on <a href="http://www.nature.com/protocolexchange/protocols/2327">Trapnell et al. (2012)</a> <em>Nature Protocols</em></li>
</ul>
<dl><dd>In this tutorial we cover the concepts of <a href="http://en.wikipedia.org/wiki/RNA-Seq">RNA-Seq</a> differential gene expression (DGE) analysis using a very small synthetic dataset from a well studied organism.</dd></dl>
<p><strong> Advanced Galaxy Tutorial </strong></p>
<ul>
<li><a href="https://docs.google.com/document/d/1fQ1XfeOKhezJUDTzMXtZVY20c3RGoHe-HLvFOGzqU4s/pub">RNA-Seq (Advanced) Tutorial</a></li>
</ul>
<dl><dd>In this tutorial we compare the performance of three statistically-based differential expression tools:</dd><dd>* CuffDiff</dd><dd>* EdgeR</dd><dd>* DESeq2</dd></dl>
<p><strong> Advanced Command Line Tutorial </strong></p>
<ul>
<li><a href="https://docs.google.com/document/d/1ayJXtgBP1OXtnV7o7lq4QHKMNk5SdPHFq4hGkqndBtI/pub">Graphical Output with CummeRbund</a> introduces some basic commands using the cummeRbund package of the R programming language</li>
</ul>
<dl><dd>You will need to install R, RStudio and cummeRbund on your PC (explained in the Tutorial). You will learn how to produce graphical output from RNA-Seq analysis previously done using a Cuffdiff analysis.</dd></dl>
<h2><span> Variant Detection </span></h2>
<p><strong> Basic Galaxy Tutorial </strong></p>
<ul>
<li><a href="https://docs.google.com/document/pub?id=1ZRzrjjOCvtAu3m-IKL-rbJ1f4On60dDL_IEwG7oejdI">Variant Detection tutorial</a></li>
</ul>
<dl><dd>In this tutorial we cover the concepts of detecting small variants (SNVs and indels) in human genomic DNA using a small set of reads from chromosome 22.</dd></dl>
<p><strong>Advanced Galaxy Tutorial</strong></p>
<ul>
<li><a href="https://docs.google.com/document/pub?id=1CuKkKylVDb03tnN7RSWl5EUzleetn0ctjmvaidPKLxM">Variant Detection (Advanced) Tutorial</a></li>
</ul>
<dl><dd>In this tutorial we compare the performance of three statistically-based variant detection tools:</dd><dd>* SAMtools: Mpileup</dd><dd>* GATK: Unified Genotyper</dd><dd>* FreeBayes</dd><dd>Each of these tools takes as its input a BAM file of aligned reads and generates a list of likely variants in VCF format</dd></dl>
<p><strong>Pipelines</strong> are for those who are comfortable with using the UNIX command line; and often allow more control over branching and iteration logic.</p>
<ul>
<li><a href="https://github.com/claresloggett/variant_calling_pipeline">WGS/exome GATK-based variant calling pipeline</a></li>
</ul>
<dl><dd>This is a basic variant-calling and annotation pipeline developed at the Victorian Life Sciences Computation Initiative (VLSCI), University of Melbourne. It is based around BWA, GATK and ENSEMBL and was originally designed for human (or similar) data. The master branch is configured for WGS data; there is an exome branch configured for variant calling in exome data.</dd><dd>To run the pipeline you will need Rubra: <a href="https://github.com/bjpop/rubra">https://github.com/bjpop/rubra</a>. Rubra uses the python Ruffus library: <a href="http://www.ruffus.org.uk/">http://www.ruffus.org.uk/</a>.</dd></dl>
<p><strong>Protocols</strong></p>
<ul>
<li><a href="https://docs.google.com/document/d/1lfDYNzHjfDA1pHTHd-0w3xHhg7L4TipT1gRfzgiV8es/pub">Familial Variant Calling</a></li>
</ul>
<dl><dd>In this protocol we discuss and outline the process of calling familial related mutations.</dd></dl>
<ul>
<li><a href="https://docs.google.com/document/d/1PIhm8NrFGaSK0hxpDcp8wUOz11ZkOaHIrpnJshMgDec/pub">Somatic Variant Calling</a></li>
</ul>
<dl><dd>In this protocol we discuss and outline the process of identifying somatic variants or mutations.</dd></dl>
<h2><span> Assembly </span></h2>
<p><strong> Basic Galaxy Tutorial </strong></p>
<ul>
<li><a href="https://docs.google.com/document/pub?id=1N3AB9ptISUu4zULqe1kXpVF0BDyGb5f5yzxWSJd_WNM">Genome assembly tutorial</a></li>
</ul>
<dl><dd>In this tutorial we carry out de novo assembly of a microbial genome. We have also written a <a href="https://docs.google.com/document/d/1xs-TI5MejQARqo0pcocGlymsXldwJbJII890gnmjI0o/pub">De novo Genome Assembly for Illumina Data</a> Protocol for a more generic description of the method.</dd></dl>
<p><strong> Protocol </strong></p>
<ul>
<li><a href="https://docs.google.com/document/d/1xs-TI5MejQARqo0pcocGlymsXldwJbJII890gnmjI0o/pub">De novo Genome Assembly for Illumina Data</a></li>
</ul>
<dl><dd>In this protocol we discuss and outline the process of de novo assembly for small to medium sized genomes. Use our <a href="https://docs.google.com/document/pub?id=1N3AB9ptISUu4zULqe1kXpVF0BDyGb5f5yzxWSJd_WNM">Genome assembly tutorial</a> to learn a specific case of using Galaxy to carry out de novo assembly of a microbial genome.</dd></dl>
<h2><span> Small RNAs </span></h2>
<p><strong> Basic Galaxy Tutorial </strong></p>
<ul>
<li><a href="https://docs.google.com/document/d/1WAObJr7M0m8U-2ku-0Y0Sdt_IHmqd1h8WaJHPhnJ1lM/pub">Quality control for small RNA</a></li>
</ul>
<dl><dd>This tutorial covers initial steps of the workflow for analysis of short RNA expression such as a quality control of the raw reads, processing of the raw reads for the subsequent analysis and initial quality assessment of the library.</dd></dl>
<h2><span> ChIP Seq </span></h2>
<p><strong> Protocol </strong></p>
<ul>
<li><a href="https://docs.google.com/document/d/1UPJC8dsiDeP5R9MH9U0IvoDgPF2Q3EOstAuzS3e6WCE/pub">ChIP-Seq</a></li>
</ul>
<dl><dd>In this protocol we discuss ChIP-Seq: a method to analyze the interaction between proteins and DNA.</dd></dl>
<h2><span> Amplicons </span></h2>
<p><strong>Protocol</strong></p>
<ul>
<li><a href="https://docs.google.com/document/d/1uW7JzxG86QzS92hTyeuNsLhX_d1XFbaZPSjh7jWxcSg/pub">Amplicon Alignment</a></li>
</ul>
<dl><dd>In this protocol we discuss and outline the process of aligning custom amplicons using primers for high precision.</dd></dl>
<h2><span> Learn Galaxy </span></h2>
<p><a href="https://docs.google.com/document/d/1wsdJDYfjZVg2uJxm9AHi_j0mY3X1M1F4gB-elkuYL7c/pub">Introduction to Galaxy,</a> for those who are very new to Galaxy.</p>
<p><a href="https://docs.google.com/document/d/1t7vVqa3mdeZYPv5-8hiHBFBYhNiynV_3mWByno9-wUM/pub">Using Histories and Workflows,</a> for those with some Galaxy knowledge.</p>
<p>The Galaxy project website has many <a href="http://wiki.galaxyproject.org/Learn">tutorials</a> and <a href="http://wiki.galaxyproject.org/Learn/Screencasts">screencasts</a> about using Galaxy and the tools, and developing new tools.</p><p>Address of the bookmark: <a href="https://genome.edu.au/wiki/Learn" rel="nofollow">https://genome.edu.au/wiki/Learn</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</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/10459/associate-professor-bio-informatics-at-university-of-allahabad-in-allahabad</guid>
  <pubDate>Wed, 07 May 2014 00:26:53 -0500</pubDate>
  <link></link>
  <title><![CDATA[Associate Professor - Bio-Informatics at University of Allahabad in Allahabad]]></title>
  <description><![CDATA[
<p>No of vacancies: 01</p>

<p>Pay scale: Pay Band of Rs. 37400-67000 with AGP of Rs. 9000.</p>

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

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

<p>iii. 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/policy papers.</p>

<p>iv. Contribution to educational 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>v. A minimum score as stipulated in the Academic Performance Indicator (API) based Performance Based Appraisal System (PBAS), set out in UGC Regulation.</p>

<p>Download application form from website: http://www.allduniv.ac.in/</p>

<p>Send your application to the Registrar, University of Allahabad, Allahabad-211002 (U.P.) on or before 30th April 2014</p>

<p>For more details: http://www.allduniv.ac.in/images/adv/backlog/advt-details.pdf OR http://www.allduniv.ac.in/images/news/extension-notice.pdf</p>

<p>Last Apply Date: 30 May 2014</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/28787/various-scholarships-around-the-world</guid>
	<pubDate>Fri, 12 Aug 2016 04:47:54 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/28787/various-scholarships-around-the-world</link>
	<title><![CDATA[Various scholarships around the world !!]]></title>
	<description><![CDATA[<p>This page provides information on&nbsp;scholarships for&nbsp;developing countries&nbsp; students who are in need of scholarship to study at home and abroad. A scholarship programme is often created to reward students who have worked hard in their career path. Every year prominent Universities and organizations fund scholarships for the students of developing countries to fulfill their dreams of studying at home and overseas for shaping their career perfectly. These scholarships are both fully funded and partially funded. Below weaved list of scholarships for students of developing countries includes all&nbsp;academic&nbsp;levels as&nbsp;undergraduate, graduate, masters,&nbsp;doctoral and postdoctoral students.</p><p><strong><a href="https://www.nottingham.ac.uk/studywithus/international-applicants/scholarships-fees-and-finance/scholarships/masters-scholarships/dev-sol-masters.aspx" target="_blank">Developing Solutions Masters Scholarship at University of Nottingham, UK</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>University of Nottingham<strong><br />Eligible Students:&nbsp;</strong>Applicants are not currently studying at a University of Nottingham campus or are not a University of Nottingham graduate<strong>.</strong><br /><strong>Courses:&nbsp;</strong>Scholarships are available for pursuing masters degree programme&nbsp;at University of Nottingham.<br /><strong>Award Details:&nbsp;</strong>105 scholarships are available as follows: 30 x 100% tuition fee and 75 x 50% of tuition fees.<br /><strong>Application Deadline:&nbsp;</strong>22 April 2016</p><p><strong><a href="http://www.ed.ac.uk/student-funding/postgraduate/international/region/africa/nyerere" target="_blank">Julius Nyerere Master&rsquo;s Scholarships for Tanzanian Students at University of Edinburgh, UK</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>University of Edinburgh, UK<strong><br />Eligible Students:&nbsp;</strong>Applicants should already have been offered a place at the University of Edinburgh and should have firmly accepted that offer or be intending to do so.<strong><br />Courses:&nbsp;</strong>Scholarship is available for pursuing master&rsquo;s degree at University of Edinburgh.<strong><br />Award Details:</strong>&nbsp;The Julius Nyerere Master&rsquo;s Scholarships will cover the full overseas tuition fee, living costs of &pound;10,000, and a return flight from Tanzania to the UK.<br /><strong>Application Deadline:</strong>&nbsp;1st April 2016</p><p><strong><a href="http://cscuk.dfid.gov.uk/apply/shared-scholarships/info-candidates/" target="_blank">Commonwealth Shared Scholarships in UK, 2016</a><br /></strong><strong>Scholarship Provider:&nbsp;</strong>Commonwealth Scholarship Commission in the United Kingdom (CSC) in partnership with UK universities.<br /><strong>Eligible Students:&nbsp;</strong>Applicant must be a Commonwealth citizen, refugee, or British protected person.<strong><br />Courses:&nbsp;</strong>Scholarships are available for pursuing masters degree program&nbsp;at UK Institutions.<br /><strong>Award Details:&nbsp;</strong>Each Scholarship provides study travel grant towards the costs of study-related travel within the UK or overseas<br /><strong>Application Deadline:&nbsp;</strong>April 1, 2016</p><p><strong><a href="http://www.thehagueuniversity.com/bachelor-studies/admissions-and-finances/financing-your-bachelor-study/talent-scholarship" target="_blank">World Citizen Talent Scholarships for Non-EEA Students</a><br /></strong><strong>Scholarship Provider:&nbsp;</strong>Hague University,&nbsp;Netherlands<strong><br />Eligible Students:&nbsp;</strong>Applicant must enrolling for the first time and have not studied at any programmes of The Hague University of Applied Sciences<br /><strong>Courses:&nbsp;</strong>Scholarships are available for pursuing bachelor degree&nbsp;level at&nbsp;Hague University.<br /><strong>Award Details:&nbsp;</strong>Scholarships&nbsp;each worth&nbsp;EUR 5,000&nbsp;are available to prospective bachelor degree students for the 2016-2017 academic year.<br /><strong>Application Deadline:&nbsp;</strong>31 March 2016</p><p><strong><a href="http://www.ihrp.mahidol.ac.th/index.php/en/academic-admissions/scholarships/137-starting-in-2016-2017-academic-year-emerging-scholar-program-for-master-of-arts-in-human-rights-international-program" target="_blank">IHRP Emerging Scholar Program at Mahidol University</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>The Institute of Human Rights and Peace Studies (IHRP),&nbsp;Mahidol University,&nbsp;Thailand<br /><strong>Eligible Students:&nbsp;</strong>Applicant should have very strong English skills.<strong><br />Courses:&nbsp;</strong>Scholarship is available for pursuing MA degree programme.<br /><strong>Award Details:&nbsp;</strong>The scholarship allows for reduced tuition and thesis fees (4,200 Baht per credit to 1,200 Baht per credit each term and a 50 % of the cost of the thesis fee).<br /><strong>Application Deadline:&nbsp;</strong>March 31, 2016</p><p><strong><a href="http://scholarship-positions.com/fig-foundation-phd-scholarships-surveyinggeomatics-academic-programme-denmark/2015/11/21/" target="_blank">2016 FIG Foundation PhD Scholarships for Developing Countries, Denmark</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>FIG Foundation<strong><br />Eligible Students:&nbsp;</strong>Applicants from low-income, lower-middle or upper-middle income economy<strong>&nbsp;</strong>are eligible.<strong><br />Courses:&nbsp;</strong>Scholarships are available for pursuing PhD programme<strong>.</strong><br /><strong>Award Details:&nbsp;</strong>Successful applicants will qualify for a further grant of up to 3,000 euros to attend and present a peer reviewed paper at a FIG conference.<strong>&nbsp;</strong><br /><strong>Application Deadline:&nbsp;</strong>The application deadline is 1 March 2016.</p><p><strong><a href="https://www.humboldt-foundation.de/web/icf.html" target="_blank">International Climate Protection Fellowships for Developing Countries</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>Federal Environment Ministry&rsquo;s (BMU) International Climate Initiative<strong><br />Eligible Students:&nbsp;</strong>Applicant should have very good knowledge of English or German<strong><br />Courses:&nbsp;</strong>Fellowships are available for undertaking research in Germany<br /><strong>Award Details:&nbsp;</strong>Fellowship amount according to qualifications between &euro;2,150 and &euro;2,650 per month<br /><strong>Application Deadline:&nbsp;</strong>1 March 2016</p><p><strong><a href="http://www.isunet.edu/admissions/funding-scholarships" target="_blank">International Space University Scholarship Program in France, 2016<br /></a></strong><strong>Scholarship Provider:&nbsp;</strong>The International Space University<strong><br />Eligible Students:&nbsp;</strong>This financial aid is available for applicants from Europe,&nbsp;the United States, Canada and Australia, developing countries and from other countries.<br /><strong>Courses:&nbsp;</strong>Scholarship is available for MSS, SSP and SH-SSP students.<br /><strong>Award Details:&nbsp;</strong>This aid is available to selected applicants, and covers a portion of their tuition fees.<br /><strong>Application Deadline:&nbsp;</strong>MSS&nbsp;applicants:&nbsp;15 March 2016,&nbsp;SSP16 applicants:&nbsp;30 April 2016 and SH-SSP16 applicants:&nbsp;30 November</p><p><a href="https://www.lshtm.ac.uk/study/funding/janssen_pharmaceutica_scholarships_for_msc_global_mental_health.html" target="_blank"><strong>Janssen Pharmaceutica Scholarships for MSc in UK, 2016-2017</strong><br /></a><strong>Scholarship Provider:&nbsp;</strong>London School of Hygiene and Tropical Medicine, UK<strong><br />Eligible Students:&nbsp;</strong>Applicants must hold an offer of admission to the MSc Global Mental Health commencing in 2016-17.<br /><strong>Courses:&nbsp;</strong>Scholarships are available for pursuing masters degree&nbsp;at King&rsquo;s College London.<br /><strong>Award Details:&nbsp;</strong>Each scholarship will cover full tuition fees, a living expense stipend of GBP 15,298.00 and an allowance in the summer for project expenses.<br /><strong>Application Deadline:&nbsp;</strong>29 February 2016</p><p><strong><a href="http://www.ox.ac.uk/admissions/undergraduate/fees-and-funding/oxford-support/reach-oxford-scholarship" target="_blank">Reach Oxford Scholarship for Students from Developing Countries</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>Oxford University,&nbsp;UK<strong><br />Eligible Students:&nbsp;</strong>This scheme is only suitable for candidates of the highest academic ability who have outstanding examination results.<br /><strong>Courses:&nbsp;</strong>Scholarships are available for pursuing undergraduate&nbsp;degree&nbsp;level at Oxford University.<br /><strong>Award Details:&nbsp;</strong>Scholarship covers University fees and college fees, a grant for living expenses and one return air fare per year.<br /><strong>Application Deadline:&nbsp;</strong>17 February 2016</p><p><a href="https://www.oclc.org/about/awards.en.html" target="_blank"><strong>Jay Jordan IFLA/OCLC Development Fellowship Program, 2017</strong><br /></a><strong>Scholarship Provider:&nbsp;</strong>International Federation of Library Associations and Institutions (IFLA) and OCLC<br /><strong>Eligible Students:&nbsp;</strong>Applicant must have a qualifying degree in library or information science.<br /><strong>Courses:&nbsp;</strong>This is a&nbsp;intensive four-week Fellowship program based at OCLC&rsquo;s headquarters in Dublin, Ohio, USA&nbsp;for&nbsp;library and information science professionals.<br /><strong>Award Details:&nbsp;</strong>The award provides each fellow Airfare, coach class, from the recipient&rsquo;s home country to the United States and return trip to the recipient&rsquo;s home country<br /><strong>Application Deadline:&nbsp;</strong>February 12, 2016</p><p><strong><a href="http://scholarship-positions.com/franklin-mosher-baldwin-memorial-fellowships-for-developing-countries/2015/11/29/" target="_blank">Franklin Mosher Baldwin Memorial Fellowships for Developing Countries, 2016<br /></a></strong><strong>Scholarship Provider:&nbsp;</strong>The Leakey Foundation<strong><br />Eligible Students:&nbsp;</strong>Citizens of a developing countries are eligible.<strong><br />Courses:&nbsp;</strong>Fellowships are available for advanced special training or studies leading towards an M.A or PhD.<br /><strong>Award Details:&nbsp;</strong>The maximum award is limited to $15,000 per year.<br /><strong>Application Deadline:&nbsp;</strong>The application deadline is February 15 2016.</p><p><a href="http://www.mids.ch/the-students/financial-aid-scholarships/mids-managed-scholarships.html" target="_blank"><strong>MIDS-Managed Scholarships for Developing Countries</strong><br /></a><strong>Scholarship Provider:&nbsp;</strong>Geneva Law School and&nbsp;Graduate Institute of International and Development Studies<br /><strong>Eligible Students:&nbsp;</strong>Demonstrated financial need on the part of candidates as well as their immediate and extended families, employers and any other persons who might otherwise have been able to contribute toward financing their MIDS studies.<br /><strong>Courses:&nbsp;</strong>This scholarship is available for pursuing Master&rsquo;s degree (LLM).<br /><strong>Award Details:&nbsp;</strong>These scholarships cover the total tuition fees as well as CHF 15,000 toward living expenses.<br /><strong>Application Deadline:&nbsp;</strong>1<strong>&nbsp;</strong>February 2016</p><p><a href="http://immana.lcirah.ac.uk/interviewbekelemegersa" target="_blank">IMMANA Postdoctoral Fellowships, 2016</a><br /><strong>Scholarship Provider:&nbsp;</strong>UK Department for International Development (DFID), UK government<br /><strong>Eligible Students:&nbsp;</strong>Eligible applicants will have completed a doctorate (PhD, DPhil, DPH, MD, DVM or similar terminal degree) in any field<br /><strong>Courses:&nbsp;</strong>Fellowships are available for undertaking postdoctoral research programme.<br /><strong>Award Details:&nbsp;</strong>A fixed stipend of &pound;34,000 (approximately $52,000) paid in quarterly installments against satisfactory completion of programme milestones.<br /><strong>Application Deadline:&nbsp;</strong>1&nbsp;February 2016</p><p><strong><a href="http://www.edctp.org/call/edctp-tdr-clinical-research-development-fellowships-2/" target="_blank">2016 EDCTP-TDR Clinical Research and Development Fellowships</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>European &amp; Developing Countries Clinical Trials Partnership (EDCTP) and WHO/TDR.<strong><br />Eligible Students:&nbsp;</strong>Applicant must be a post-graduate (MSc or PhD) or medical graduate with clinical and/or research experience in infectious diseases.<br /><strong>Courses:&nbsp;</strong>Fellowships are available&nbsp;to early to mid-career clinical researchers and&nbsp;key members of clinical trial research teams.<br /><strong>Award Details:&nbsp;</strong>The grant covers one economy class return ticket (home &ndash; host organisation &ndash; home); a monthly stipend; health insurance; an allowance to cover essential educational support materials.<br /><strong>Application Deadline:&nbsp;</strong>28 January 2016 (Stage 1) and&nbsp;21 July 2016 (Stage 2:&nbsp;Training plan &ndash;&nbsp;EDCTP only).</p><p><strong><a href="http://www.unoosa.org/oosa/en/ourwork/psa/bsti/fellowships.html" target="_blank">United Nations/Japan Long-term Fellowship Programme on Nano-Satellite Technologies</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>The United Nations Office for Outer Space Affairs and the Government of Japan<br /><strong>Eligible Students:&nbsp;</strong>Be nationals of developing countries or countries with economy in transition; be duly nominated by their institutions.<br /><strong>Courses:&nbsp;</strong>Scholarship is available for pursing PhD students.<br /><strong>Award Details:&nbsp;</strong>The selected candidates will each receive a grant under Japanese government (Mobukagakusho: MEXT) scholarship (Research Students) of about 145,000 yen per month.<strong><br />Application Deadline:&nbsp;</strong>24 January 2016</p><p><strong><a href="http://www.acmedsci.ac.uk/careers/funding-schemes/daniel-turnberg-travel-fellowship/" target="_blank">The Daniel Turnberg UK/Middle East Travel Fellowship Scheme</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>Daniel Turnberg Memorial Fund with ongoing support from the Royal College of Physicians, London, the Wellcome Trust and the Wolfson Family Charitable Trust.<strong><br />Eligible Students:&nbsp;</strong>Fellowship is open for medical and non-medical graduates who can show a commitment to a career in research.<br /><strong>Courses:&nbsp;</strong>Travel Fellowship for Medical researchers and bio scientists in the field of biomedical.<strong><br />Award Details:&nbsp;</strong>The Fellowship will cover airfare and a subsistence allowance for a period of up to<strong>four weeks</strong>.<strong>&nbsp;</strong>Funding is provided to an upper limit of&nbsp;&pound;3,500<strong>&nbsp;</strong>per fellowship<strong><br />Application Deadline:&nbsp;</strong>18 January 2016</p><p><a href="http://www.mmmf-grants.org/home/uscanada-program" target="_blank"><strong>MMMF Grants for Women of Developing Countries, 2016</strong><br /></a><strong>Scholarship Provider:&nbsp;</strong>Margaret McNamara Memorial Fund<strong><br />Eligible Students:&nbsp;</strong>Demonstrate a commitment to working to empower women and children in developing countries.<br /><strong>Courses:&nbsp;</strong>Grant is available towards the completion of the degree program in Canada and USA.<br /><strong>Award Details:&nbsp;</strong>An MMMF grant covers only a portion of the total costs for an academic year.<br /><strong>Application Deadline:&nbsp;</strong>January 16, 2016</p><p><strong><a href="http://scholarship-positions.com/dorothy-marchus-senesh-fellowship-women-developing-countries-usa/2015/10/14/" target="_blank">Dorothy Marchus Senesh Fellowship for Women from Developing Countries in USA, 2016-2017</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>International Peace Research Association Foundation<strong><br />Eligible Students:&nbsp;</strong>The Dorothy Senesh Fellowships are available to women from developing countries<strong>.</strong><strong><br />Courses:&nbsp;</strong>Fellowships are available for pursuing graduate programme.<br /><strong>Award Details:&nbsp;</strong>The Fellowships provide $5,000 per year for two years for both women, for a total of $10,000 each.<br /><strong>Application Deadline:&nbsp;</strong>Applications are due by January 15, 2016.</p><p><strong><a href="http://iprafoundation.org/senesh-fellowship/" target="_blank">Dorothy Marchus Senesh Fellowship for Women, 2016-2017</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>International Peace Research Association Foundation<strong><br />Eligible Students:&nbsp;</strong>The Dorothy Senesh Fellowships are available to women from developing countries who have completed a Bachelor&rsquo;s degree<br /><strong>Courses:&nbsp;</strong>Fellowships are available for pursuing graduate programme.<strong><br />Award Details:&nbsp;</strong>The Fellowships provide $5,000 per year for two years for both women, for a total of $10,000 each.<br /><strong>Application Deadline:&nbsp;</strong>January 15, 2016</p><p><a href="http://www.ox.ac.uk/admissions/graduate/fees-and-funding/fees-funding-and-scholarship-search/weidenfeld-hoffmann-scholarships-and-leadership-programme/louis-dreyfus-weidenfeld-scholarship-and-leadership-programme" target="_blank"><strong>Louis Dreyfus-Weidenfeld Scholarship in UK, 2016</strong><br /></a><strong>Scholarship Provider:&nbsp;</strong>Louis Dreyfus Foundation&nbsp;and University of Oxford, UK<br /><strong>Eligible Students:&nbsp;</strong>This scholarship seeks to support individuals who, following completion of their supported studies, will go on to actively engage in the chosen fields.<br /><strong>Courses:&nbsp;</strong>Scholarships are available for pursuing full time graduate degree at University of Oxford.<br /><strong>Award Details:&nbsp;</strong>The scholarship will cover 100% of University and college fees and a grant for living costs (of at least &pound;14,057).<br /><strong>Application Deadline:&nbsp;</strong>8 or 22 January 2016, depending on your course.</p><p><strong><a href="http://wwf.panda.org/how_you_can_help/volunteer/prince_bernhard_scholarships/" target="_blank">WWF Prince Bernhard Scholarships for Developing Countries</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>WWF,&nbsp;Switzerland<strong><br />Eligible Students:&nbsp;</strong>Applications are encouraged from people seeking to build skills in specific subjects that will enhance their contribution to nature conservation.<strong><br />Courses:&nbsp;</strong>Scholarships are available for pursuing formal studies or professional training.<br /><strong>Award Details:&nbsp;</strong>The maximum amount for any one scholarship under this scheme is CHF 10,000 and preferential consideration is given to requests for less than CHF 10,000.<br /><strong>Application Deadline:&nbsp;</strong>5 January 2016</p><p><strong><a href="http://scholarship-positions.com/jncasr-cics-fellowship-programme-developing-countries-india/2015/10/03/" target="_blank">JNCASR-CICS Fellowship Programme for Developing Countries in India, 2016</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>Jawaharlal Nehru Centre for Advanced Scientific Research (JNCASR ) Bangalore and the Centre for International Co-operation in Science(CICS)&nbsp;Chennai,&nbsp;India<strong><br /></strong><strong>Eligible Students:&nbsp;</strong>Citizens of developing countries<strong><br />Courses:&nbsp;</strong>Fellowships are available to undertake research studies (short-term, participatory research) in India.<br /><strong>Award Details:&nbsp;</strong>The Fellowship covers return airfare from place of work in their home country to place of work in India, boarding and lodging at the affiliated institution/s, and an adequate allowance in Indian currency to cover incidental expenses<strong>.</strong><br /><strong>Application Deadline:&nbsp;</strong>The last date for receipt of the applications is 31st October every year.</p><p><strong><a href="http://scholarship-positions.com/ifs-individual-research-grants-citizens-developing-countries/2015/11/26/" target="_blank">IFS Individual Research Grants for Citizens of Developing Countries, 2016</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>International Foundation for Science (IFS)<strong><br />Eligible Students:&nbsp;</strong>Citizens of following developing countries.<strong><br />Courses:</strong>&nbsp;Grants are available for pursuing research programme.<br /><strong>Award Details:&nbsp;</strong>Individual Research grants are awarded on merit in amounts up to USD 12,000 for one to three years.<br /><strong>Application Deadline:&nbsp;</strong>The deadline for submission of research grant applications is 31st December 2015.</p><p><strong><a href="http://www.kuleuven.be/iro/index.html" target="_blank">IRO Doctoral Scholarship for Developing Countries Students in Belgium</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>Catholic University of Leuven&rsquo;s&nbsp;Interfaculty Council for Development Cooperation,&nbsp;Belgium<strong><br />Eligible Students:&nbsp;</strong>The candidate must hold an academic qualification at least equivalent to a high distinction.<br /><strong>Courses:&nbsp;</strong>Scholarships are available for pursuing&nbsp;PhD&nbsp;program&nbsp;at KU Leuven<br /><strong>Award Details:&nbsp;</strong>The scholarship includes monthly basic amount&nbsp;&euro; 1,415 (75% of the net salary of an assistant) paid at the end of each month&nbsp;for doctoral students&nbsp;and&nbsp;&euro;1000 paid at the beginning of each month<br /><strong>Application Deadline:&nbsp;</strong>November 9th</p><p><a href="http://cscuk.dfid.gov.uk/apply/split-site-scholarships/" target="_blank"><strong>Commonwealth Split-site (PhD) Scholarships for Developing Countries, 2016</strong><br /></a><strong>Scholarship Provider:&nbsp;</strong>UK Department for International Development (DFID)<strong><br />Eligible Students:&nbsp;</strong>Be registered for a PhD at a university in your home country<br /><strong>Courses:&nbsp;</strong>Scholarships are available for pursuing Split-site (PhD)<strong><br />Award Details:&nbsp;</strong>Each scholarship provides study travel grant towards the costs of study-related travel within the UK or overseas<br /><strong>Application Deadline:&nbsp;</strong>19 November</p><p><a href="http://cscuk.dfid.gov.uk/apply/medical-fellowships/" target="_blank"><strong>2016 Commonwealth Medical Fellowships in UK</strong><strong><br /></strong></a><strong>Scholarship Provider:&nbsp;</strong>UK Department for International Development (DFID)<strong><br />Eligible Students:&nbsp;</strong>Applicant must have qualified as a doctor or dentist between 1 October 2006 and 30 September 2009, or before 1 October 2001<br /><strong>Courses:&nbsp;</strong>Fellowships are available&nbsp;to doctors and dentists to enable them to spend between three and six months at a UK hospital.<br /><strong>Award Details:&nbsp;</strong>Each fellowship provides research support grant, payable to your host university hospital<br /><strong>Application Deadline:&nbsp;</strong>19 November</p><p><strong><a href="http://cscuk.dfid.gov.uk/apply/academic-fellowships/" target="_blank">Commonwealth Academic Fellowships for Mid-Career Academics in UK, 2016</a><br />Scholarship Provider:&nbsp;</strong>UK Department for International Development (DFID)<strong><br />Eligible Students:&nbsp;</strong>Applicant must be permanently resident in a developing Commonwealth country<br /><strong>Courses:&nbsp;</strong>Fellowships are awarded for&nbsp;early career&nbsp;academics to spend three months&nbsp;undertaking research and updating their skills&nbsp;at any approved UK university or higher education institution.<br /><strong>Award Details:&nbsp;</strong>Each fellowship provides grant towards the cost of preparing reports and other written work<br /><strong>Application Deadline:&nbsp;</strong>19 November</p><p><strong><a href="http://www.unep.org/provia/ACTIVITIES/FellowshipProgramme/tabid/794421/Default.aspx" target="_blank">PROVIA Visiting Fellowship Programme</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>The Global Programme of Research on Climate Change Vulnerability, Impacts and Adaptation (PROVIA) and START<br /><strong>Eligible Students:&nbsp;</strong>The fellowship is open to professionals and researchers whose work involves designing, implementing, or promoting adaptation solutions.<br /><strong>Courses:</strong>&nbsp;Fellowship is available for<strong>&nbsp;</strong>four weeks residential&nbsp;programme at the host institution.<br /><strong>Award Details:</strong>&nbsp;It provides travel (airfare, visa application fee, and airport transfer) and accommodation (housing, daily subsistence allowance) expenses for this fellowship will be covered.<br /><strong>Application Deadline:</strong>&nbsp;20 November</p><p><strong><a href="http://coady.stfx.ca/themes/women/gcl/" target="_blank">Global Change Leaders Scholarship Program for Developing Countries</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>The Coady International Institute, St. Francis Xavier University<br /><strong>Eligible Students:&nbsp;</strong>This program is targeted to emerging women leaders from developing countries who are working on development issues<br /><strong>Courses:&nbsp;</strong>It&nbsp;is a seven-week education program at Coady Institute&rsquo;s International Centre for Women&rsquo;s Leadership.<br /><strong>Award Details:&nbsp;</strong>The Global Change Leaders program provides successful candidates with a full scholarship that includes tuition, travel, accommodations, and meals.<br /><strong>Application Deadline:&nbsp;</strong>December 4</p><p><strong><a href="http://www.brookings.edu/about/employment/fellowship/2015/gbl15169" target="_blank">Center for Universal Education Echidna Global Program, 2016</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>The Center for Universal Education, Brookings Institution, USA<br /><strong>Eligible Students:&nbsp;</strong>Applicants should have a background in education, development, economics, or a related area, with at least 15 years of professional experience<br /><strong>Courses:&nbsp;</strong>Scholarship is available for undertaking research at the Brookings Institution.<br /><strong>Award Details:&nbsp;</strong>Applicants selected for the fellowship will receive a living stipend of USD $5,000 a month (subject to U.S. tax withholding), paid housing for the four-and-a-half month term, and round-trip travel expenses.<br /><strong>Application Deadline:&nbsp;</strong>November 30</p><p><a href="http://training.iarc.fr/en/fellowships/postdoc.php" target="_blank"><strong>2016 IARC Postdoctoral Fellowships in Cancer Research, France</strong><br /></a><strong>Scholarship Provider:&nbsp;</strong>The International Agency for Research on Cancer (IARC)<br /><strong>Eligible Students:&nbsp;</strong>Candidates are required to have finished their doctoral degree (Ph.D.) within five years of the closing date.<br /><strong>Courses:&nbsp;</strong>Fellowships are available&nbsp;for postdoctoral researchers to complete their training at the IARC in France.<br /><strong>Award Details:&nbsp;</strong>The annual stipend is currently 33 000 Euros and will be paid monthly in advance.<br /><strong>Application Deadline:</strong>&nbsp;30 November</p><p><a href="http://www.isdb.org/irj/portal/anonymous?NavigationTarget=navurl://744f417a19ed335f9f3f27decc21e0c4" target="_blank"><strong>Islamic Development Bank Prize</strong><strong><br /></strong></a><strong>Scholarship Provider:&nbsp;</strong>Islamic Development Bank<strong><br />Eligible Students:&nbsp;</strong>Applicant must have engage in activities and /or reside in one of the IDB member countries or in a Muslim community in non-member countries.<br /><strong>Courses:&nbsp;</strong>Prize is available for women who have&nbsp;developed or be actively involved in projects/activities that are innovative and helped to improve&nbsp;access to safe and affordable water<br /><strong>Award Details:&nbsp;</strong>The Prize consists of two cash awards-U.S. $ 50,000 for a woman or a group of women and U.S. $ 100,000 for an organization.<strong><br />Application Deadline:&nbsp;</strong>30th November</p><p><strong><a href="http://www.facultyforthefuture.net/" target="_blank">Schlumberger Foundation Faculty for the Future Fellowships, 2016</a><br />Scholarship Provider:&nbsp;</strong>The Schlumberger Foundation<strong><br />Eligible Students:&nbsp;</strong>Fellowship applicants should have a proven track record of teaching experience or can demonstrate commitment to teaching.<br /><strong>Courses:&nbsp;</strong>Fellowships are available to pursue PhD or postdoctoral studies at leading universities abroad.<br /><strong>Award Details:&nbsp;</strong>Faculty for the Future grants are based on actual costs for eligible expenses up to a maximum of USD 50,000 per year and may be renewed through to completion of studies<br /><strong>Application Deadline:&nbsp;</strong>November 13th</p><p><strong><a href="https://www.ictp.it/research/math/fellowships.aspx" target="_blank">Mathematics Research Fellowships for Developing Countries</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>The Abdus Salam International Centre for Theoretical Physics (ICTP)<br /><strong>Eligible Students:&nbsp;</strong>Visiting Fellows must have a PhD in mathematics prior to the start of their Fellowship.<strong><br />Courses:&nbsp;</strong>These visiting Fellowships are open to mathematicians&nbsp;for pursuing research programme at ICTP.<br /><strong>Award Details:&nbsp;</strong>A&nbsp;small number of visiting fellowships will be awarded.<br /><strong>Application Deadline:&nbsp;</strong>15 December</p><p><strong><a href="http://twas.org/opportunities/fellowships" target="_blank">TWAS-icipe Fellowship Program</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>The International Centre of Insect Physiology and Ecology (icipe)<br /><strong>Eligible Students:&nbsp;</strong>Applicant must be permanent residents in a developing country (other than Kenya)<br /><strong>Courses:&nbsp;</strong>Fellowships are available for undertaking&nbsp;PhD or postdoctoral&nbsp;studies.<strong><br />Award Details:&nbsp;</strong>Icipe will provide a standard monthly allowance which should be used to cover living costs, such as accommodation, food and health insurance.<br /><strong>Application Deadline:&nbsp;</strong>15th September</p><p><strong><a href="http://www.theisn.org/programs/fellowship-program?showall=&amp;limitstart=" target="_blank">ISN Fellowship Program for Developing Countries&rsquo; Students</a><br />Scholarship Provider:&nbsp;</strong>International Society of Nephrology<strong><br />Eligible Students:&nbsp;</strong>The candidates with the highest scores will be granted a fellowship.<br /><strong>Courses:&nbsp;</strong>Fellowship program provides relevant and contemporary nephrology training to physicians.<br /><strong>Award Details:&nbsp;</strong>The total sum of the grant is in alignment with the length of the training and varies according to the anticipated expenses in the host country, as per World Bank data.<br /><strong>Application Deadline:&nbsp;</strong>May 1st or October 1st</p><p><strong><a href="http://twas.org/opportunities/fellowships" target="_blank">TWAS-CSIR Fellowship Programme</a></strong><br /><strong>Scholarship Provider:&nbsp;</strong>Council of Scientific and Industrial Research, India<strong><br />Eligible Students:&nbsp;</strong>Hold a PhD degree in a field of science or technology.<br /><strong>Courses:&nbsp;</strong>Fellowships are available for pursuing research at postgraduate and postdoctoral level at&nbsp;laboratories and institutes<br /><strong>Award Details:&nbsp;</strong>CSIR will provide a monthly stipend to cover for living costs, food and health insurance<br /><strong>Application Deadline:&nbsp;</strong>31st August of each year</p><p><strong><a href="http://www.sfiar.ch/award.htm" target="_blank">SFIAR Awards for Developing Countries Students in Switzerland<br /></a></strong><strong>Scholarship Provider:&nbsp;</strong>The Swiss Forum for International Agricultural Research (SFIAR)<br /><strong>Eligible Students:&nbsp;</strong>Applicant has appropriate linkages in developing countries<strong>.<br />Courses:&nbsp;</strong>This award is available for pursuing&nbsp;PhD or postdoctoral level.<br /><strong>Award Details:&nbsp;</strong>The prize sum of the SFIAR Award is CHF 5&rsquo;000 for a PhD or Post Doc project and CHF 10&rsquo;000 for a team project.&nbsp;<strong><br />Application Deadline:&nbsp;</strong>20 November</p><p><strong><a href="https://ish.org.uk/student-zone/scholarship/" target="_blank">International Students House Residential Scholarships<br /></a></strong><strong>Scholarship Provider:&nbsp;</strong>(ISH)&nbsp;International&nbsp;Students House<strong><br />Eligible Students:&nbsp;</strong>Students should be from a developing or emerging country and intending to return on completion of their studies.<br /><strong>Courses:&nbsp;</strong>This is a two year residential scholarship program for postgraduate students.<br /><strong>Award Details:&nbsp;</strong>ISH&nbsp;provides a range of residential scholarships which provide free accommodation at ISH for up to a year and in exceptional circumstances up to three years.<strong>&nbsp;</strong><br /><strong>Application Deadline:&nbsp;</strong>30 June</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/videolist/watch/10664/dna-replication-process-3d-animation</guid>
	<pubDate>Sat, 10 May 2014 04:41:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/videolist/watch/10664/dna-replication-process-3d-animation</link>
	<title><![CDATA[DNA Replication Process [3D Animation]]]></title>
	<description><![CDATA[<iframe width="" height="" src="https://www.youtube-nocookie.com/embed/27TxKoFU2Nw" frameborder="0" allowfullscreen></iframe>See an organised list of all the animations: http://doctorprodigious.wordpress.com/hd-animations/]]></description>
	
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/39307/awk-for-beginners</guid>
	<pubDate>Fri, 26 Apr 2019 16:19:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/39307/awk-for-beginners</link>
	<title><![CDATA[AWK for beginners !]]></title>
	<description><![CDATA[<p>AWK is a standard tool on every POSIX-compliant UNIX system. It&rsquo;s like flex/lex, from the command-line, perfect for text-processing tasks and other scripting needs. It has a C-like syntax, but without mandatory semicolons (although, you should use them anyway, because they are required when you&rsquo;re writing one-liners, something AWK excels at), manual memory management, or static typing. It excels at text processing. You can call to it from a shell script, or you can use it as a stand-alone scripting language.</p><p>Why use AWK instead of Perl? Readability. AWK is easier to read than Perl. For simple text-processing scripts, particularly ones that read files line by line and split on delimiters, AWK is probably the right tool for the job.</p><div><pre><span>#!/usr/bin/awk -f</span>

<span># Comments are like this</span>


<span># AWK programs consist of a collection of patterns and actions.</span>
<span>pattern1</span> <span>{</span> <span>action</span><span>;</span> <span>}</span> <span># just like lex</span>
<span>pattern2</span> <span>{</span> <span>action</span><span>;</span> <span>}</span>

<span># There is an implied loop and AWK automatically reads and parses each</span>
<span># record of each file supplied. Each record is split by the FS delimiter,</span>
<span># which defaults to white-space (multiple spaces,tabs count as one)</span>
<span># You can assign FS either on the command line (-F C) or in your BEGIN</span>
<span># pattern</span>

<span># One of the special patterns is BEGIN. The BEGIN pattern is true</span>
<span># BEFORE any of the files are read. The END pattern is true after</span>
<span># an End-of-file from the last file (or standard-in if no files specified)</span>
<span># There is also an output field separator (OFS) that you can assign, which</span>
<span># defaults to a single space</span>

<span>BEGIN</span> <span>{</span>

    <span># BEGIN will run at the beginning of the program. It's where you put all</span>
    <span># the preliminary set-up code, before you process any text files. If you</span>
    <span># have no text files, then think of BEGIN as the main entry point.</span>

    <span># Variables are global. Just set them or use them, no need to declare..</span>
    <span>count</span> <span>=</span> <span>0</span><span>;</span>

    <span># Operators just like in C and friends</span>
    <span>a</span> <span>=</span> <span>count</span> <span>+</span> <span>1</span><span>;</span>
    <span>b</span> <span>=</span> <span>count</span> <span>-</span> <span>1</span><span>;</span>
    <span>c</span> <span>=</span> <span>count</span> <span>*</span> <span>1</span><span>;</span>
    <span>d</span> <span>=</span> <span>count</span> <span>/</span> <span>1</span><span>;</span> <span># integer division</span>
    <span>e</span> <span>=</span> <span>count</span> <span>%</span> <span>1</span><span>;</span> <span># modulus</span>
    <span>f</span> <span>=</span> <span>count</span> <span>^</span> <span>1</span><span>;</span> <span># exponentiation</span>

    <span>a</span> <span>+=</span> <span>1</span><span>;</span>
    <span>b</span> <span>-=</span> <span>1</span><span>;</span>
    <span>c</span> <span>*=</span> <span>1</span><span>;</span>
    <span>d</span> <span>/=</span> <span>1</span><span>;</span>
    <span>e</span> <span>%=</span> <span>1</span><span>;</span>
    <span>f</span> <span>^=</span> <span>1</span><span>;</span>

    <span># Incrementing and decrementing by one</span>
    <span>a</span><span>++</span><span>;</span>
    <span>b</span><span>--</span><span>;</span>

    <span># As a prefix operator, it returns the incremented value</span>
    <span>++</span><span>a</span><span>;</span>
    <span>--</span><span>b</span><span>;</span>

    <span># Notice, also, no punctuation such as semicolons to terminate statements</span>

    <span># Control statements</span>
    <span>if</span> <span>(</span><span>count</span> <span>==</span> <span>0</span><span>)</span>
        <span>print</span> <span>"Starting with count of 0"</span><span>;</span>
    <span>else</span>
        <span>print</span> <span>"Huh?"</span><span>;</span>

    <span># Or you could use the ternary operator</span>
    <span>print</span> <span>(</span><span>count</span> <span>==</span> <span>0</span><span>)</span> <span>?</span> <span>"Starting with count of 0"</span> <span>:</span> <span>"Huh?"</span><span>;</span>

    <span># Blocks consisting of multiple lines use braces</span>
    <span>while</span> <span>(</span><span>a</span> <span>&lt;</span> <span>10</span><span>)</span> <span>{</span>
        <span>print</span> <span>"String concatenation is done"</span> <span>" with a series"</span> <span>" of"</span>
            <span>" space-separated strings"</span><span>;</span>
        <span>print</span> <span>a</span><span>;</span>

        <span>a</span><span>++</span><span>;</span>
    <span>}</span>

    <span>for</span> <span>(</span><span>i</span> <span>=</span> <span>0</span><span>;</span> <span>i</span> <span>&lt;</span> <span>10</span><span>;</span> <span>i</span><span>++</span><span>)</span>
        <span>print</span> <span>"Good ol' for loop"</span><span>;</span>

    <span># As for comparisons, they're the standards:</span>
    <span># a &lt; b   # Less than</span>
    <span># a &lt;= b  # Less than or equal</span>
    <span># a != b  # Not equal</span>
    <span># a == b  # Equal</span>
    <span># a &gt; b   # Greater than</span>
    <span># a &gt;= b  # Greater than or equal</span>

    <span># Logical operators as well</span>
    <span># a &amp;&amp; b  # AND</span>
    <span># a || b  # OR</span>

    <span># In addition, there's the super useful regular expression match</span>
    <span>if</span> <span>(</span><span>"foo"</span> <span>~</span> <span>"^fo+$"</span><span>)</span>
        <span>print</span> <span>"Fooey!"</span><span>;</span>
    <span>if</span> <span>(</span><span>"boo"</span> <span>!~</span> <span>"^fo+$"</span><span>)</span>
        <span>print</span> <span>"Boo!"</span><span>;</span>

    <span># Arrays</span>
    <span>arr</span><span>[</span><span>0</span><span>]</span> <span>=</span> <span>"foo"</span><span>;</span>
    <span>arr</span><span>[</span><span>1</span><span>]</span> <span>=</span> <span>"bar"</span><span>;</span>

    <span># You can also initialize an array with the built-in function split()</span>

    <span>n</span> <span>=</span> <span>split</span><span>(</span><span>"foo:bar:baz"</span><span>,</span> <span>arr</span><span>,</span> <span>":"</span><span>);</span>

    <span># You also have associative arrays (actually, they're all associative arrays)</span>
    <span>assoc</span><span>[</span><span>"foo"</span><span>]</span> <span>=</span> <span>"bar"</span><span>;</span>
    <span>assoc</span><span>[</span><span>"bar"</span><span>]</span> <span>=</span> <span>"baz"</span><span>;</span>

    <span># And multi-dimensional arrays, with some limitations I won't mention here</span>
    <span>multidim</span><span>[</span><span>0</span><span>,</span><span>0</span><span>]</span> <span>=</span> <span>"foo"</span><span>;</span>
    <span>multidim</span><span>[</span><span>0</span><span>,</span><span>1</span><span>]</span> <span>=</span> <span>"bar"</span><span>;</span>
    <span>multidim</span><span>[</span><span>1</span><span>,</span><span>0</span><span>]</span> <span>=</span> <span>"baz"</span><span>;</span>
    <span>multidim</span><span>[</span><span>1</span><span>,</span><span>1</span><span>]</span> <span>=</span> <span>"boo"</span><span>;</span>

    <span># You can test for array membership</span>
    <span>if</span> <span>(</span><span>"foo"</span> <span>in</span> <span>assoc</span><span>)</span>
        <span>print</span> <span>"Fooey!"</span><span>;</span>

    <span># You can also use the 'in' operator to traverse the keys of an array</span>
    <span>for</span> <span>(</span><span>key</span> <span>in</span> <span>assoc</span><span>)</span>
        <span>print</span> <span>assoc</span><span>[</span><span>key</span><span>];</span>

    <span># The command line is in a special array called ARGV</span>
    <span>for</span> <span>(</span><span>argnum</span> <span>in</span> <span>ARGV</span><span>)</span>
        <span>print</span> <span>ARGV</span><span>[</span><span>argnum</span><span>];</span>

    <span># You can remove elements of an array</span>
    <span># This is particularly useful to prevent AWK from assuming the arguments</span>
    <span># are files for it to process</span>
    <span>delete</span> <span>ARGV</span><span>[</span><span>1</span><span>];</span>

    <span># The number of command line arguments is in a variable called ARGC</span>
    <span>print</span> <span>ARGC</span><span>;</span>

    <span># AWK has several built-in functions. They fall into three categories. I'll</span>
    <span># demonstrate each of them in their own functions, defined later.</span>

    <span>return_value</span> <span>=</span> <span>arithmetic_functions</span><span>(</span><span>a</span><span>,</span> <span>b</span><span>,</span> <span>c</span><span>);</span>
    <span>string_functions</span><span>();</span>
    <span>io_functions</span><span>();</span>
<span>}</span>

<span># Here's how you define a function</span>
<span>function</span> <span>arithmetic_functions</span><span>(</span><span>a</span><span>,</span> <span>b</span><span>,</span> <span>c</span><span>,</span>     <span>d</span><span>)</span> <span>{</span>

    <span># Probably the most annoying part of AWK is that there are no local</span>
    <span># variables. Everything is global. For short scripts, this is fine, even</span>
    <span># useful, but for longer scripts, this can be a problem.</span>

    <span># There is a work-around (ahem, hack). Function arguments are local to the</span>
    <span># function, and AWK allows you to define more function arguments than it</span>
    <span># needs. So just stick local variable in the function declaration, like I</span>
    <span># did above. As a convention, stick in some extra whitespace to distinguish</span>
    <span># between actual function parameters and local variables. In this example,</span>
    <span># a, b, and c are actual parameters, while d is merely a local variable.</span>

    <span># Now, to demonstrate the arithmetic functions</span>

    <span># Most AWK implementations have some standard trig functions</span>
    <span>localvar</span> <span>=</span> <span>sin</span><span>(</span><span>a</span><span>);</span>
    <span>localvar</span> <span>=</span> <span>cos</span><span>(</span><span>a</span><span>);</span>
    <span>localvar</span> <span>=</span> <span>atan2</span><span>(</span><span>b</span><span>,</span> <span>a</span><span>);</span> <span># arc tangent of b / a</span>

    <span># And logarithmic stuff</span>
    <span>localvar</span> <span>=</span> <span>exp</span><span>(</span><span>a</span><span>);</span>
    <span>localvar</span> <span>=</span> <span>log</span><span>(</span><span>a</span><span>);</span>

    <span># Square root</span>
    <span>localvar</span> <span>=</span> <span>sqrt</span><span>(</span><span>a</span><span>);</span>

    <span># Truncate floating point to integer</span>
    <span>localvar</span> <span>=</span> <span>int</span><span>(</span><span>5.34</span><span>);</span> <span># localvar =&gt; 5</span>

    <span># Random numbers</span>
    <span>srand</span><span>();</span> <span># Supply a seed as an argument. By default, it uses the time of day</span>
    <span>localvar</span> <span>=</span> <span>rand</span><span>();</span> <span># Random number between 0 and 1.</span>

    <span># Here's how to return a value</span>
    <span>return</span> <span>localvar</span><span>;</span>
<span>}</span>

<span>function</span> <span>string_functions</span><span>(</span>    <span>localvar</span><span>,</span> <span>arr</span><span>)</span> <span>{</span>

    <span># AWK, being a string-processing language, has several string-related</span>
    <span># functions, many of which rely heavily on regular expressions.</span>

    <span># Search and replace, first instance (sub) or all instances (gsub)</span>
    <span># Both return number of matches replaced</span>
    <span>localvar</span> <span>=</span> <span>"fooooobar"</span><span>;</span>
    <span>sub</span><span>(</span><span>"fo+"</span><span>,</span> <span>"Meet me at the "</span><span>,</span> <span>localvar</span><span>);</span> <span># localvar =&gt; "Meet me at the bar"</span>
    <span>gsub</span><span>(</span><span>"e+"</span><span>,</span> <span>"."</span><span>,</span> <span>localvar</span><span>);</span> <span># localvar =&gt; "m..t m. at th. bar"</span>

    <span># Search for a string that matches a regular expression</span>
    <span># index() does the same thing, but doesn't allow a regular expression</span>
    <span>match</span><span>(</span><span>localvar</span><span>,</span> <span>"t"</span><span>);</span> <span># =&gt; 4, since the 't' is the fourth character</span>

    <span># Split on a delimiter</span>
    <span>n</span> <span>=</span> <span>split</span><span>(</span><span>"foo-bar-baz"</span><span>,</span> <span>arr</span><span>,</span> <span>"-"</span><span>);</span> <span># a[1] = "foo"; a[2] = "bar"; a[3] = "baz"; n = 3</span>

    <span># Other useful stuff</span>
    <span>sprintf</span><span>(</span><span>"%s %d %d %d"</span><span>,</span> <span>"Testing"</span><span>,</span> <span>1</span><span>,</span> <span>2</span><span>,</span> <span>3</span><span>);</span> <span># =&gt; "Testing 1 2 3"</span>
    <span>substr</span><span>(</span><span>"foobar"</span><span>,</span> <span>2</span><span>,</span> <span>3</span><span>);</span> <span># =&gt; "oob"</span>
    <span>substr</span><span>(</span><span>"foobar"</span><span>,</span> <span>4</span><span>);</span> <span># =&gt; "bar"</span>
    <span>length</span><span>(</span><span>"foo"</span><span>);</span> <span># =&gt; 3</span>
    <span>tolower</span><span>(</span><span>"FOO"</span><span>);</span> <span># =&gt; "foo"</span>
    <span>toupper</span><span>(</span><span>"foo"</span><span>);</span> <span># =&gt; "FOO"</span>
<span>}</span>

<span>function</span> <span>io_functions</span><span>(</span>    <span>localvar</span><span>)</span> <span>{</span>

    <span># You've already seen print</span>
    <span>print</span> <span>"Hello world"</span><span>;</span>

    <span># There's also printf</span>
    <span>printf</span><span>(</span><span>"%s %d %d %d\n"</span><span>,</span> <span>"Testing"</span><span>,</span> <span>1</span><span>,</span> <span>2</span><span>,</span> <span>3</span><span>);</span>

    <span># AWK doesn't have file handles, per se. It will automatically open a file</span>
    <span># handle for you when you use something that needs one. The string you used</span>
    <span># for this can be treated as a file handle, for purposes of I/O. This makes</span>
    <span># it feel sort of like shell scripting, but to get the same output, the string</span>
    <span># must match exactly, so use a variable:</span>

    <span>outfile</span> <span>=</span> <span>"/tmp/foobar.txt"</span><span>;</span>

    <span>print</span> <span>"foobar"</span> <span>&gt;</span> <span>outfile</span><span>;</span>

    <span># Now the string outfile is a file handle. You can close it:</span>
    <span>close</span><span>(</span><span>outfile</span><span>);</span>

    <span># Here's how you run something in the shell</span>
    <span>system</span><span>(</span><span>"echo foobar"</span><span>);</span> <span># =&gt; prints foobar</span>

    <span># Reads a line from standard input and stores in localvar</span>
    <span>getline</span> <span>localvar</span><span>;</span>

    <span># Reads a line from a pipe (again, use a string so you close it properly)</span>
    <span>cmd</span> <span>=</span> <span>"echo foobar"</span><span>;</span>
    <span>cmd</span> <span>|</span> <span>getline</span> <span>localvar</span><span>;</span> <span># localvar =&gt; "foobar"</span>
    <span>close</span><span>(</span><span>cmd</span><span>);</span>

    <span># Reads a line from a file and stores in localvar</span>
    <span>infile</span> <span>=</span> <span>"/tmp/foobar.txt"</span><span>;</span>
    <span>getline</span> <span>localvar</span> <span>&lt;</span> <span>infile</span><span>;</span> 
    <span>close</span><span>(</span><span>infile</span><span>);</span>
<span>}</span>

<span># As I said at the beginning, AWK programs consist of a collection of patterns</span>
<span># and actions. You've already seen the BEGIN pattern. Other</span>
<span># patterns are used only if you're processing lines from files or standard</span>
<span># input.</span>
<span>#</span>
<span># When you pass arguments to AWK, they are treated as file names to process.</span>
<span># It will process them all, in order. Think of it like an implicit for loop,</span>
<span># iterating over the lines in these files. these patterns and actions are like</span>
<span># switch statements inside the loop. </span>

<span>/^fo+bar$/</span> <span>{</span>

    <span># This action will execute for every line that matches the regular</span>
    <span># expression, /^fo+bar$/, and will be skipped for any line that fails to</span>
    <span># match it. Let's just print the line:</span>

    <span>print</span><span>;</span>

    <span># Whoa, no argument! That's because print has a default argument: $0.</span>
    <span># $0 is the name of the current line being processed. It is created</span>
    <span># automatically for you.</span>

    <span># You can probably guess there are other $ variables. Every line is</span>
    <span># implicitly split before every action is called, much like the shell</span>
    <span># does. And, like the shell, each field can be access with a dollar sign</span>

    <span># This will print the second and fourth fields in the line</span>
    <span>print</span> <span>$</span><span>2</span><span>,</span> <span>$</span><span>4</span><span>;</span>

    <span># AWK automatically defines many other variables to help you inspect and</span>
    <span># process each line. The most important one is NF</span>

    <span># Prints the number of fields on this line</span>
    <span>print</span> <span>NF</span><span>;</span>

    <span># Print the last field on this line</span>
    <span>print</span> <span>$</span><span>NF</span><span>;</span>
<span>}</span>

<span># Every pattern is actually a true/false test. The regular expression in the</span>
<span># last pattern is also a true/false test, but part of it was hidden. If you</span>
<span># don't give it a string to test, it will assume $0, the line that it's</span>
<span># currently processing. Thus, the complete version of it is this:</span>

<span>$</span><span>0</span> <span>~</span> <span>/^fo+bar$/</span> <span>{</span>
    <span>print</span> <span>"Equivalent to the last pattern"</span><span>;</span>
<span>}</span>

<span>a</span> <span>&gt;</span> <span>0</span> <span>{</span>
    <span># This will execute once for each line, as long as a is positive</span>
<span>}</span>

<span># You get the idea. Processing text files, reading in a line at a time, and</span>
<span># doing something with it, particularly splitting on a delimiter, is so common</span>
<span># in UNIX that AWK is a scripting language that does all of it for you, without</span>
<span># you needing to ask. All you have to do is write the patterns and actions</span>
<span># based on what you expect of the input, and what you want to do with it.</span>

<span># Here's a quick example of a simple script, the sort of thing AWK is perfect</span>
<span># for. It will read a name from standard input and then will print the average</span>
<span># age of everyone with that first name. Let's say you supply as an argument the</span>
<span># name of a this data file:</span>
<span>#</span>
<span># Bob Jones 32</span>
<span># Jane Doe 22</span>
<span># Steve Stevens 83</span>
<span># Bob Smith 29</span>
<span># Bob Barker 72</span>
<span>#</span>
<span># Here's the script:</span>

<span>BEGIN</span> <span>{</span>

    <span># First, ask the user for the name</span>
    <span>print</span> <span>"What name would you like the average age for?"</span><span>;</span>

    <span># Get a line from standard input, not from files on the command line</span>
    <span>getline</span> <span>name</span> <span>&lt;</span> <span>"/dev/stdin"</span><span>;</span>
<span>}</span>

<span># Now, match every line whose first field is the given name</span>
<span>$</span><span>1</span> <span>==</span> <span>name</span> <span>{</span>

    <span># Inside here, we have access to a number of useful variables, already</span>
    <span># pre-loaded for us:</span>
    <span># $0 is the entire line</span>
    <span># $3 is the third field, the age, which is what we're interested in here</span>
    <span># NF is the number of fields, which should be 3</span>
    <span># NR is the number of records (lines) seen so far</span>
    <span># FILENAME is the name of the file being processed</span>
    <span># FS is the field separator being used, which is " " here</span>
    <span># ...etc. There are plenty more, documented in the man page.</span>

    <span># Keep track of a running total and how many lines matched</span>
    <span>sum</span> <span>+=</span> <span>$</span><span>3</span><span>;</span>
    <span>nlines</span><span>++</span><span>;</span>
<span>}</span>

<span># Another special pattern is called END. It will run after processing all the</span>
<span># text files. Unlike BEGIN, it will only run if you've given it input to</span>
<span># process. It will run after all the files have been read and processed</span>
<span># according to the rules and actions you've provided. The purpose of it is</span>
<span># usually to output some kind of final report, or do something with the</span>
<span># aggregate of the data you've accumulated over the course of the script.</span>

<span>END</span> <span>{</span>
    <span>if</span> <span>(</span><span>nlines</span><span>)</span>
        <span>print</span> <span>"The average age for "</span> <span>name</span> <span>" is "</span> <span>sum</span> <span>/</span> <span>nlines</span><span>;</span>
<span>}</span>
</pre><p><span>&nbsp;</span></p></div>]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>

</channel>
</rss>