<?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/29272?offset=830</link>
	<atom:link href="https://bioinformaticsonline.com/related/29272?offset=830" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22026/igib-recruitment-2015-%E2%80%93-project-scientist</guid>
  <pubDate>Tue, 14 Apr 2015 12:19:59 -0500</pubDate>
  <link></link>
  <title><![CDATA[IGIB Recruitment 2015 – Project Scientist]]></title>
  <description><![CDATA[
<p>IGIB Recruitment 2015 – Project Scientist &amp; SPF Posts: CSIR – Institute of Genomics &amp; Integrative Biology (IGIB) has issued notification for the recruitment of Project Scientist, Sr Project Fellow vacancies on temporary basis for project entitled “Setting up of CSIR(unit)-TRISUTRA (Translational research and Innovative Science through Ayurgenomics)”. Eligible candidates may apply in prescribed application format on or before 23-04-2015. Other details like age limit, educational qualification, selection process &amp; how to apply are given below…</p>

<p>IGIB Vacancy Details:<br />Total No. of Posts: 04<br />Name of the Posts:<br />1. Project Scientist (Biology): 02 Posts<br />2. Project Scientist (Bioinformatics): 01 Post<br />3. Sr Project Fellow (Ayurveda): 01 Post</p>

<p>Age Limit: Candidates age should be 35 years for post 1, 32 years for post 2</p>

<p>Educational Qualification: Candidates should have Ph.D/ Ph.D submitted in any branch of Biological Science/ Life Science for post 1, Ph.D/ Ph.D submitted in Bioinformatics for post 2, BAMS degree with one year internship for post 3.</p>

<p>Selection Process: Candidates will be selected based on their performance in interview.</p>

<p>How to Apply: Eligible candidates may send their application along with all relevant documents on or before 23-04-2015.</p>

<p>Important Dates:<br />Last Date for Receipt of Application for Post 1 &amp; 2: 23-04-2015.<br />Date of Interview for Post 3: 27-04-2015.</p>

<p>For other details like pay scale, age relaxation, educational qualification, selection process, how to apply, etc., click on the link given below…</p>

<p>http://www.freejobalert.com/wp-content/uploads/2015/03/Notification-IGIB-Project-Scientist-SPF-Posts.pdf</p>

<p>http://www.igib.res.in/sites/default/files/27042015.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/44371/steps-to-find-all-the-repeats-in-the-genome</guid>
	<pubDate>Thu, 31 Aug 2023 02:43:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/44371/steps-to-find-all-the-repeats-in-the-genome</link>
	<title><![CDATA[Steps to find all the repeats in the genome !]]></title>
	<description><![CDATA[<div><p>To find repeats in a genome from 2 to 9 length using a Perl script, you can use the RepeatMasker tool with the "--length" option<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>. Here's a step-by-step guide:</p></div><div><ol>
<li>Install RepeatMasker: First, you need to install RepeatMasker on your system. You can download it from the RepeatMasker website<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>.</li>
</ol></div><div><ol>
<li>Prepare the genome sequence: Make sure you have the genome sequence in a FASTA file format. Let's assume the file is named "genome.fasta".</li>
</ol><blockquote><p>./RepeatMasker -pa &lt;number_of_processors&gt; -nolow -norna -no_is -div &lt;divergence_value&gt; -lib RepeatMaskerLib.embl -gff -xsmall -small -poly -species &lt;species_name&gt; -dir &lt;output_directory&gt; -length &lt;min_length&gt;-&lt;max_length&gt; genome.fasta</p></blockquote><div><p>Replace the following placeholders with appropriate values:</p><ul>
<li><code>&lt;number_of_processors&gt;</code>: The number of processors/threads you want to use for parallel processing.</li>
<li><code>&lt;divergence_value&gt;</code>: The divergence value for the species you are analyzing. You can find divergence values for different species in the RepeatMasker documentation<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>.</li>
<li><code>&lt;species_name&gt;</code>: The name of the species you are analyzing.</li>
<li><code>&lt;output_directory&gt;</code>: The directory where you want the output files to be saved.</li>
<li><code>&lt;min_length&gt;</code>&nbsp;and&nbsp;<code>&lt;max_length&gt;</code>: The minimum and maximum lengths of the repeats you want to find (in this case, 2 and 9).</li>
</ul></div><div><ol>
<li>Analyze the output: RepeatMasker will generate several output files, including a .out file. You can parse this file to extract the information you need. There is a Perl tool called "one_code_to_find_them_all.pl" that can help you parse RepeatMasker output files<a href="https://mobilednajournal.biomedcentral.com/articles/10.1186/1759-8753-5-13" target="_blank">[0]</a>. You can download it from the source provided.</li>
</ol></div><div><ol>
<li>Use the provided Perl script: Once you have the "one_code_to_find_them_all.pl" script, you can run it to conveniently parse the RepeatMasker output files. Here's an example of how to use it:</li>
</ol><blockquote><p>perl one_code_to_find_them_all.pl --rm &lt;RepeatMasker_out_file&gt; --length &lt;length_file&gt;</p></blockquote></div><p>&nbsp;</p></div><div><div><p>Replace&nbsp;<code>&lt;RepeatMasker_out_file&gt;</code>&nbsp;with the path to your RepeatMasker .out file, and&nbsp;<code>&lt;length_file&gt;</code>&nbsp;with the path to a file containing the lengths of the reference elements.</p></div><div><p>This script will generate several output files, including .log.txt and .copynumber.csv, which contain quantitative information about the identified repeat elements.</p></div><div><p>Remember to adjust the parameters and options according to your specific needs and the characteristics of your genome.</p></div></div>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/22047/binc-sample-question-paper</guid>
	<pubDate>Thu, 16 Apr 2015 09:14:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/file/view/22047/binc-sample-question-paper</link>
	<title><![CDATA[BINC Sample Question Paper !!!]]></title>
	<description><![CDATA[<p>BINC sample question paper round TWO.</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/22047" length="1621" type="text/plain" />
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/44637/tools-to-access-the-quality-of-your-assembled-genome</guid>
	<pubDate>Thu, 08 Aug 2024 23:31:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/44637/tools-to-access-the-quality-of-your-assembled-genome</link>
	<title><![CDATA[Tools to access the quality of your assembled genome !]]></title>
	<description><![CDATA[<ul dir="auto">
<li><a href="https://github.com/linsalrob/fasta_validator">FASTA VALIDATOR</a>&nbsp;+&nbsp;<a href="https://github.com/shenwei356/seqkit">SEQKIT RMDUP</a>: FASTA validation</li>
<li><a href="https://genometools.org/tools/gt_gff3validator.html">GENOMETOOLS GT GFF3VALIDATOR</a>: GFF3 validation</li>
<li><a href="https://github.com/PlantandFoodResearch/assemblathon2-analysis/blob/a93cba25d847434f7eadc04e63b58c567c46a56d/assemblathon_stats.pl">ASSEMBLATHON STATS</a>: Assembly statistics</li>
<li><a href="https://genometools.org/tools/gt_stat.html">GENOMETOOLS GT STAT</a>: Annotation statistics</li>
<li><a href="https://github.com/ncbi/fcs">NCBI FCS ADAPTOR</a>: Adaptor contamination pass/fail</li>
<li><a href="https://github.com/ncbi/fcs">NCBI FCS GX</a>: Foreign organism contamination pass/fail</li>
<li><a href="https://gitlab.com/ezlab/busco">BUSCO</a>: Gene-space completeness estimation</li>
<li><a href="https://github.com/tolkit/telomeric-identifier">TIDK</a>: Telomere repeat identification</li>
<li><a href="https://github.com/oushujun/LTR_retriever/blob/master/LAI">LAI</a>: Continuity of repetitive sequences</li>
<li><a href="https://github.com/DerrickWood/kraken2">KRAKEN2</a>: Taxonomy classification</li>
<li><a href="https://github.com/igvteam/juicebox.js">HIC CONTACT MAP</a>: Alignment and visualisation of HiC data</li>
<li><a href="https://github.com/mummer4/mummer">MUMMER</a>&nbsp;&rarr;&nbsp;<a href="http://circos.ca/documentation/">CIRCOS</a>&nbsp;+&nbsp;<a href="https://plotly.com/">DOTPLOT</a>&nbsp;&amp;&nbsp;<a href="https://github.com/lh3/minimap2">MINIMAP2</a>&nbsp;&rarr;&nbsp;<a href="https://github.com/schneebergerlab/plotsr">PLOTSR</a>: Synteny analysis</li>
<li><a href="https://github.com/marbl/merqury">MERQURY</a>: K-mer completeness, consensus quality and phasing assessment</li>
</ul>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22072/bioinformatics-jrfrasrf-position-at-indian-institute-of-science-education-and-research-iiser-kolkata-kolkata-west-bengal</guid>
  <pubDate>Fri, 17 Apr 2015 04:11:14 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics JRF/RA/SRF position at Indian Institute of Science Education and Research (IISER Kolkata) - Kolkata, West Bengal]]></title>
  <description><![CDATA[
<p>Research Position in Computational Biology in the group of Shree P. Pandey Positions available in the area of NGS data analysis, bioinformatics, plant genomics</p>

<p>Project Description: Projects involves high throughput analysis of data mostly generated by massively parallel sequencing (RNA-Seq and small-RNA-Seq), microarrays and related platforms. We are looking for highly motivated and bright individuals interested in high-throughput cutting-edge data analyses methods in genomics (computational positions). Available positions: Applications are invited from suitable candidates in both, the Max Planck India Partner Program and the CRP Wheat Program for openings at the levels:</p>

<p>Post Name-Qualification-Salary:<br />Project assistant – Master’s – Rs. 14000<br />Project fellow (junior data analyst) – Masters + research experience – Rs. 16000<br />Research fellow (senior data analyst) – Masters + adequate research experience/desirable skill sets – Rs. 22000<br />Research Associated – PhD (&lt; 1yr) /&gt; 1 yr experience – Rs. 28000 / Rs. 32000<br />Essential qualification: MSc/MTech/PhD (or other suitable qualification) in discipline related to bioinformatics, computational biology, computer application (or equivalent)/ ‘Advance Post-Graduate Diploma in Bioinformatics’. Proficiency in one of the programming languages or statistics (proficient in R for example) is compulsory.<br />Desirable qualification: 1. Programming experiences in at least one low level language such as C/C++ and one scripting language such as Perl/Python/PHP and knowledge of SQL/MySQL. 2. Substantial experience in the linux or other unix environments. 3. Experience of working in projects on Bioinformatics, Genetics or Biological application areas/Computational and Statistical analysis (e.g. using R or Matlab). Experience in the field of genomics (NGS, microarrays, genome annotation), database development and management, software development, systems and network biology (or related fields) will be preferred.<br />SELECTION PROCEDURE FOR INDIAN INSTITUTE OF SCIENCE EDUCATION AND RESEARCH (IISER KOLKATA) – RESEARCH ASSOCIATE &amp; MORE VACANCIES POST:</p>

<p>Candidates can apply on or before 30/04/2015<br />No Detailed information about the selection process is mentioned in the recruitment notification<br />HOW TO APPLY FOR RESEARCH ASSOCIATE &amp; MORE VACANCIES IN INDIAN INSTITUTE OF SCIENCE EDUCATION AND RESEARCH (IISER KOLKATA):</p>

<p>Applications should contain CV along with brief description (maximum 1 page) of research conducted (highlighting skills and experience) till now. Applications should be sent by email to Shree P. Pandey, Department of Biological Sciences, IISER-Kolkata, Mohanpur Campus, West Bengal within 2 weeks. Interviews will be scheduled within 10 days of closing of applications. E-mail: sppiiserkol@gmail.com, sppandey@iiserkol.ac.in<br />For more details visit: http://www.iiserkol.ac.in/~sppandey</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44766/genome-simulation-with-slim-and-msprime</guid>
	<pubDate>Fri, 31 Jan 2025 12:47:43 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44766/genome-simulation-with-slim-and-msprime</link>
	<title><![CDATA[Genome Simulation with SLiM and msprime]]></title>
	<description><![CDATA[<p>Genome simulation is an essential tool in population genetics, enabling researchers to model evolutionary processes and study genetic variation. Two widely used simulation tools in this field are <strong style="font-size: 12.8px;">SLiM</strong><span style="font-size: 12.8px; font-weight: normal;"> and </span><strong style="font-size: 12.8px;">msprime</strong><span style="font-size: 12.8px; font-weight: normal;">. While both serve different purposes, they can be used together with the </span><strong style="font-size: 12.8px;">slendr</strong><span style="font-size: 12.8px; font-weight: normal;"> framework to compare simulation outputs effectively.</span></p><h2>Overview of SLiM and msprime</h2><h3>SLiM: Forward Genetic Simulator</h3><p>SLiM is a <strong>free, open-source</strong> tool designed for forward genetic simulations. It allows researchers to model complex evolutionary scenarios, including selection, recombination, and demographic events, making it particularly useful for studying adaptation and selection in populations.</p><p><strong>Key Features of SLiM:</strong></p><ul>
<li>
<p>Simulates population evolution forward in time</p>
</li>
<li>
<p>Supports custom evolutionary models using an embedded scripting language</p>
</li>
<li>
<p>Allows modeling of spatial and ecological dynamics</p>
</li>
<li>
<p>Provides high flexibility and extensibility for user-defined scenarios</p>
</li>
<li>
<p>Available on GitHub as an open-source project</p>
</li>
</ul><h3>msprime: Ancestry and Mutation Simulator</h3><p>msprime is an efficient, <strong>open-source</strong> tool that simulates ancestry and mutations using a coalescent framework. It is known for its high-speed performance and low memory requirements, making it a popular choice for large-scale genomic simulations.</p><p><strong>Key Features of msprime:</strong></p><ul>
<li>
<p>Implements coalescent simulations for ancestry modeling</p>
</li>
<li>
<p>Efficiently simulates large population histories</p>
</li>
<li>
<p>Supports the addition of mutations to genealogies</p>
</li>
<li>
<p>Developed using an open-source community model</p>
</li>
<li>
<p>Often faster and more memory-efficient than alternative simulators</p>
</li>
</ul><h2>Using SLiM and msprime with slendr</h2><p>Both SLiM and msprime can be integrated with <strong>slendr</strong>, a framework that facilitates structured population genetic simulations. This integration allows for seamless comparison of simulation outputs.</p><h3>How They Work Together:</h3><ul>
<li>
<p>SLiM and msprime simulations can be analyzed within slendr.</p>
</li>
<li>
<p>The <strong>ts_read()</strong> function in slendr enables loading and comparing tree sequence outputs from both simulators.</p>
</li>
<li>
<p>This integration allows researchers to validate simulation results and gain deeper insights into evolutionary processes.</p>
</li>
</ul><h2>Performance Considerations</h2><p>While SLiM offers powerful forward simulations with extensive customization, msprime is often preferred for its <strong>speed and memory efficiency</strong> when simulating ancestry and mutations. The choice between the two depends on the research goals:</p><ul>
<li>
<p><strong>For detailed evolutionary modeling with selection and recombination:</strong> Use SLiM.</p>
</li>
<li>
<p><strong>For large-scale coalescent simulations with mutations:</strong> Use msprime.</p>
</li>
<li>
<p><strong>For comparing different simulation models and their outputs:</strong> Use slendr to integrate SLiM and msprime results.</p>
</li>
</ul><h2>Conclusion</h2><p>SLiM and msprime are valuable tools for genome simulation, each serving distinct but complementary purposes in population genetics research. By leveraging the strengths of both simulators with slendr, researchers can conduct robust and efficient evolutionary simulations, enhancing our understanding of genetic diversity and adaptation.</p><p>For more information, check out the official GitHub repositories for <strong>SLiM</strong> and <strong>msprime</strong>, and explore the <strong>slendr</strong> framework for streamlined simulation workflow</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22235/project-fellow-bioinformatics-at-central-drug-research-institute</guid>
  <pubDate>Mon, 27 Apr 2015 20:15:45 -0500</pubDate>
  <link></link>
  <title><![CDATA[Project Fellow Bioinformatics at Central Drug Research Institute]]></title>
  <description><![CDATA[
<p>Project Fellow (Bioinformatics)<br />Central Drug Research Institute<br />Address: Chattar Manzil, M.G.Road, Kaisarbagh<br />Postal Code: 226001<br />City: Lucknow<br />State: Uttar Pradesh<br />Pay Scale: Rs.16,000/- (fixed) p.m.<br />Educational Requirements: M.Sc. in Bioinformatics with 55% marks for Gen. &amp; OBC and 50% marks for SC/ST candidates, Physically and Visually handicapped candidates<br />Experience Requirements: Experience in computer-assisted scientific research in the area of Drug Design including Bio- molecular modeling and simulation studies, Virtual screening, pharmacophore perception, QSAR etc. Familiarity with Linux/Unixbased computer systems and required to participate and contribute to the development and application of computational models for the design and discovery of novel molecules as inhibitors or chemical probes<br />Details will be available at: http://cdriindia.org/uploaded/advt_no01-2015.pdf</p>

<p>How To Apply: Eligible candidates required to report for the Interview at 9:00 A.M. sharp on 11-05-2015 (For Position Code No. 001 to 009) and 12-05-2015 (For Position Code No. 010 to 016). Candidates reporting after 10:00 A.M will not be allowed to attend the interview. Eligible candidates may appear before the Selection Committee for interview on the date and time mentioned above at CDRI, B.S. 10/1, Sector 10, Jankipuram Extension, Sitapur Road, Lucknow-226031. Eligible candidates must bring with them duly filled up application form (which can be downloaded from our website www.cdriindia.org), along with Original certificates as well as attested copies of certificates of examinations starting from matriculation, date of birth, caste certificate (in case of SC/ST/OBC) experience certificate, publication, if any and recent passport size photograph etc. Original documents are essential for verification of the particulars quoted by the candidate in the application form and candidate failed to produce original documents at the time of verification, shall not be allowed to attend the interview. Any request for relaxation in this regard shall not be entertained.<br />Detail of Interview: 11-05-2015<br />Age Limit: 28 Years</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/videolist/watch/16686/sequence-viewer-download-transcripts-exons-and-proteins</guid>
	<pubDate>Mon, 15 Sep 2014 17:30:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/videolist/watch/16686/sequence-viewer-download-transcripts-exons-and-proteins</link>
	<title><![CDATA[Sequence Viewer: Download Transcripts, Exons and Proteins]]></title>
	<description><![CDATA[<iframe width="" height="" src="https://www.youtube-nocookie.com/embed/ZWnLyYKozaI" frameborder="0" allowfullscreen></iframe>How to download FASTA sequence for certain gene features while in the NCBI's Sequence Viewer.

Sequence Viewer homepage:
www.ncbi.nlm.nih.gov/projects/sviewer/

Sequence Viewer playlist:
https://www.youtube.com/playlist?list=PL76D7EE6A6A8AC1C3]]></description>
	
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22269/school-of-life-sciences-jawaharlal-nehru-university-vacancy-of-jrf-srf-ra-in-csir-funded-project</guid>
  <pubDate>Wed, 29 Apr 2015 21:26:19 -0500</pubDate>
  <link></link>
  <title><![CDATA[School of Life Sciences, Jawaharlal Nehru University vacancy of JRF / SRF / RA in CSIR funded Project]]></title>
  <description><![CDATA[
<p>School of Life Sciences, Jawaharlal Nehru University has issued notification dated 27.04.2015 to fill the vacancy of JRF / SRF / RA in CSIR funded Projec entitled "Structural and functional characterization of serine biosynthetic pathway enzymes from entamoeba histolytica". It is good chance to get job with IITKGP and brighten your future. Learn eligibility criteria and apply on or before 08.05.2015.</p>

<p>Employer:	Jawaharlal Nehru University<br />Address:	Dr. S. Gourinath, Principal Investigator, School Of Life Sciences, Jawaharlal Nehru University, New Delhi-110067<br />Email:	not mentioned / provided for this job post<br />URL:	http://www.jnu.ac.in/Career/currentjobs.htm<br />Phone:	011 2674 2575<br />Skills:	not mentioned / required for this job post<br />Experience:	Experience in molecular biology, structural biology and bioinformatics is desired<br />Education:	M.Sc. in any field of life sciences.<br />Job Location:	New Delhi, Delhi, India   (View Jobs in New Delhi,   Jobs in Delhi,   Jobs in India)</p>

<p>Job Description: School of Life Sciences, Jawaharlal Nehru University vacancy of JRF / SRF / RA in CSIR funded Projec</p>

<p>Name of the Post: JRF / SRF / RA</p>

<p>Salary: As per rules</p>

<p>Required Job Profile:</p>

<p>Candidate must possess M.Sc. in any field of life sciences.</p>

<p>Desired Job Profile:</p>

<p>Candidate having NET - CSIR or UGC and experience in molecular biology, structural biology and bioinformatics is desired and experience with publication is preferred.</p>

<p>How to apply:</p>

<p>Eligible and interested candidates should need to apply with complete details to the above mentioned address on or before 08.05.2015.</p>

<p>Refer to http://www.jnu.ac.in/Career/currentjobs.htm</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/22287/research-fellows-at-aimscs-hyderabad</guid>
  <pubDate>Wed, 06 May 2015 06:23:33 -0500</pubDate>
  <link></link>
  <title><![CDATA[Research Fellows at AIMSCS, Hyderabad]]></title>
  <description><![CDATA[
<p>C.R.Rao Advanced Institute of Mathematics, Statistics and Computer Science (AIMSCS) - Hyderabad, Andhra Pradesh<br />Advertisement No.: 5/2015</p>

<p>Research Fellows Systems Biology job vacancy in C.R.Rao Advanced Institute of Mathematics, Statistics and Computer Science (AIMSCS)</p>

<p>JRF : Qualification - M. Sc in Bioinformatics, Systems Biology, M. Sc statistics, or M. Tech in Bioinformatics,</p>

<p>Pay Scale : Rs. 25,000</p>

<p>SRF : Qualification- Qualification prescribed for JRF with 2 years of research experience.</p>

<p>Pay Scale : Rs. 28,000*</p>

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

<p>Desirable: Candidates should have strong background in Computational biology, bioinformatics, statistics and algorithmic development. In addition to that previous experience of working on Linux, bio-informatics, NGS data analysis and Basic knowledge of biology is desirable. Programming on any one of the programming languages (C, C++, perl, python) and statistical framework (e.g. R, matlab, etc.) is highly desirable.</p>

<p>More at http://www.crraoaimscs.org/jrf_application_form_2015.pdf</p>
]]></description>
</item>

</channel>
</rss>