<?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/27971?offset=250</link>
	<atom:link href="https://bioinformaticsonline.com/related/27971?offset=250" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/19631/rosalind-bioinformatics-problems</guid>
	<pubDate>Thu, 18 Dec 2014 10:32:48 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/19631/rosalind-bioinformatics-problems</link>
	<title><![CDATA[Rosalind Bioinformatics problems !!!]]></title>
	<description><![CDATA[<p>Rosalind is a platform for learning bioinformatics and programming through problem solving. <a href="http://rosalind.info/problems/list-view/">Take a tour</a> to get the hang of how Rosalind works.</p>
<p>http://rosalind.info/problems/list-view/</p><p>Address of the bookmark: <a href="http://rosalind.info/problems/list-view/" rel="nofollow">http://rosalind.info/problems/list-view/</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21443/a-guide-for-complete-r-beginners-getting-data-into-r</guid>
	<pubDate>Tue, 24 Feb 2015 20:15:08 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21443/a-guide-for-complete-r-beginners-getting-data-into-r</link>
	<title><![CDATA[A guide for complete R beginners :- Getting data into R]]></title>
	<description><![CDATA[<p>For a beginner this can be is the hardest part, it is also the most important to get right.</p><p>It is possible to create a vector by typing data directly into R using the combine function &lsquo;c&rsquo;</p><blockquote><p><strong>x </strong></p></blockquote><p>same as</p><blockquote><p><strong>x </strong></p></blockquote><p>creates the vector x with the numbers between 1 and 5.</p><p>You can see what is in an object at any time by typing its name;</p><blockquote><p><strong>x</strong></p></blockquote><p>will produce the output<strong> &lsquo;[1] 1 2 3 4 5&prime;</strong></p><p>Note that names need to be quoted</p><blockquote><p><strong>daysofweek </strong><strong>&larr; c(&lsquo;Monday&rsquo;, &lsquo;Tuesday&rsquo;, &lsquo;Wednesday&rsquo;, &lsquo;Thursday&rsquo;, &lsquo;Friday&rsquo;);</strong></p></blockquote><p>Usually however you want to input from a file. We have touched on the &lsquo;read.table&rsquo; function already.</p><blockquote><p><strong>mydata </strong></p></blockquote><p>Now <strong>mydata</strong> is a data frame with multiple vectors</p><p>each vector can be identified by the default syntax</p><p>#if any of these are typed it will print to screen</p><blockquote><p><strong>mydata$V1 mydata$V2 mydata$V3 </strong></p></blockquote><p>By default the function assumes certain things from the file</p><ul>
<li>The file is a plain text file (there are function to read excel files: <em>not covered here</em>)</li>
<li>columns are separated by any number of tabs or spaces</li>
<li>there is the same number of data points in each column</li>
<li>there is no header row (labels for the columns)</li>
<li>there is no column with names for the rows** [I&rsquo;ll explain].</li>
</ul><p><span style="text-decoration: underline;">If any of these are false, we need to tell that to the function</span></p><p>If it has a header column</p><blockquote><p><strong>mydata <em>header=T also works</em></strong></p></blockquote><p>Note that there is a comma between different parts of the functions arguments</p><p>If there is one less column in the header row, then R assumes that the 1<sup>st</sup> column of data after the header are the row names</p><p>Now the vectors (columns) are identified by their name</p><p>#if any of these are typed it will print to screen</p><blockquote><p><strong>mydata$A mydata$B mydata$C </strong></p></blockquote><p># Summary about the whole data frame</p><blockquote><p><strong>summary(mydata)</strong></p></blockquote><p># Summary information of column A</p><blockquote><p><strong>summary(mydata$A) </strong></p></blockquote><p>We can shortcut having to type the data frame each time by attaching it</p><blockquote><p><strong>attach(mydata)</strong></p></blockquote><p># summary of column B as &lsquo;mydata&rsquo; is attached</p><blockquote><p><strong>summary(B)</strong></p></blockquote><p><span style="text-decoration: underline;">Two other important options for </span><em><span style="text-decoration: underline;">read.table</span></em></p><p>If is is separated only by tabs and has a header</p><blockquote><p><strong>mydata </strong></p></blockquote><p>Really useful if you have spaces in the contents of some columns, so R does not mess up reading the columns . However if the columns or of an uneven length it will tell you.</p><p>If you know that the file has uneven columns</p><blockquote><p><strong>mydata </strong></p></blockquote><p>This causes R to fill empty spaces in a columns with &lsquo;NA&rsquo; .</p><p>The last two examples will still work with our file and give the same result as with only headers=T</p><p><span style="text-decoration: underline;">Graphs</span></p><p>to get an idea of what R is capable of type</p><blockquote><p><strong>demo(graphics)</strong></p></blockquote><p>steps through the examples, and the code is printed to the screen</p><p>We will work with simpler examples that have immediate use to biologists.</p><p>Remember to get more information about the options to a function type &lsquo;?function&rsquo;</p><p><span style="text-decoration: underline;">Histogram of A</span><span style="text-decoration: underline;"></span></p><blockquote><p><strong>hist(mydata$A)</strong></p></blockquote><p>If there was more data we could increase the number of vertical columns with the option, breaks=50 (or another relevant number).</p><blockquote><p><strong>boxplot(mydata)</strong></p></blockquote><p>We can get rid of the need to type the data frame each time by using the <strong>attach</strong> function</p><p># if not already done so</p><blockquote><p><strong>attach(mydata) </strong></p><p><strong>boxplot(mydata$A, mydata$B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p>same as</p><blockquote><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p><span style="text-decoration: underline;">Scatter plot</span></p><p># if not already done so</p><blockquote><p><strong>attach(mydata) </strong></p><p><strong>plot(A,B) # or plot(mydata$A, mydata$B)</strong></p></blockquote><p><strong><span style="text-decoration: underline;">SAVING an image</span></strong></p><p>Windows users (Rgui) RIGHT click on image and select which you want.</p><p><span style="text-decoration: underline;">These instructions work for everyone.</span></p><p>You need to create a new device of the type of file you need, then send the data to that device</p><p>to save as a png file (easy to load into the likes of powerpoint, also great for web applications.</p><blockquote><p><strong>png(&lsquo;filename&rsquo;) </strong></p><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p>or to save as a pdf</p><blockquote><p><strong>pdf(&lsquo;filename&rsquo;) </strong></p><p><strong>boxplot(A, B, name=c(&ldquo;Value A&rdquo;, &ldquo;Value B&rdquo;) , ylab=&ldquo;Count of Something&rdquo;)</strong></p></blockquote><p><span style="text-decoration: underline;">Note</span></p><ul>
<li>Nothing will appear on screen, the output is going to the file</li>
<li>Also it may not be saved immediately but will once the device (or R) is turned quit.</li>
</ul><p>To quit R type</p><p><strong>q() # </strong>If you save your session, next time you start R, you will have your data preloaded.</p><p>Or if you want to remain in R</p><blockquote><pre><strong>dev.off() #</strong>turns of the png (or pdf etc) device, thus forces the data to save</pre></blockquote>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26993/lastz</guid>
	<pubDate>Mon, 18 Apr 2016 04:41:55 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26993/lastz</link>
	<title><![CDATA[LASTZ]]></title>
	<description><![CDATA[<p>LASTZ is a program for aligning DNA sequences, a pairwise aligner. Originally designed to handle sequences the size of human chromosomes and from different species, it is also useful for sequences produced by NGS sequencing technologies such as Roche 454.</p>
<p>More at http://www.bx.psu.edu/~rsharris/lastz/</p>
<p>Thesis: http://www.bx.psu.edu/~rsharris/rsharris_phd_thesis_2007.pdf</p><p>Address of the bookmark: <a href="http://www.bx.psu.edu/~rsharris/lastz/" rel="nofollow">http://www.bx.psu.edu/~rsharris/lastz/</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/23160/opencpu</guid>
	<pubDate>Sun, 05 Jul 2015 18:34:46 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/23160/opencpu</link>
	<title><![CDATA[OpenCPU]]></title>
	<description><![CDATA[<p>OpenCPU is a system for embedded scientific computing and reproducible research. The OpenCPU server provides a reliable and interoperable <a href="https://www.opencpu.org/api.html">HTTP API</a> for data analysis based on R.</p><p>The OpenCPU <a href="https://www.opencpu.org/jslib.html">JavaScript client library</a> provides the most seamless integration of R and JavaScript available today.</p><p>OpenCPU uses standard R packaging to develop, ship and deploy web applications. Several open source <a href="https://www.opencpu.org/apps.html">example apps</a> are available from Github.</p><p>Installing your own OpenCPU server is <a href="https://www.opencpu.org/download.html">super easy</a> and only takes a few minutes.</p><p>More at https://www.opencpu.org/</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/24297/bioinformatics-walkin-at-nii</guid>
  <pubDate>Fri, 04 Sep 2015 21:48:15 -0500</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatics WalkIn at NII]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT OF WALK-IN-INTERVIEW</p>

<p>NAME OF THE POST : Bioinformatician (Part time 3 days in a week) (One Position only)</p>

<p>DURATION : One Year</p>

<p>NAME OF THE PROJECT : Next generation sequencing facility</p>

<p>EDUCATIONAL QUALIFICATIONS : At least a Masters degree in Bioinformatics and Bachelors degree in any stream of life sciences</p>

<p>REQUIREMENTS :</p>

<p>Around 5 years of experience and proven track record in next generation sequence data analysis (supported by publications in peer-reviewed journals), ability to analyze transcriptomics, Chip-seq, and small RNA –seq data.</p>

<p>: Should have the ability to analyze raw primary data generated by Illumina next generation sequencing platforms and create / troubleshoot custom analysis Pipelines.</p>

<p>Should have ability to handle all downstream secondary and tertiary data analysis using commercially available as well as open source softwares (transcriptomics, ChIP-seq, small RNA-seq)</p>

<p>Apart from these, the applicant should have knowledge of the following: Programming: Perl and Python. Operating system:</p>

<p>Linux and Windows. NGS Analysis tools: Maq, BWA, Bowtie, SAM tools, BEDTools, MACS, Galaxy, FastQC, Bismark, MEDIPS, Tophat, Cufflinks, AvadisNGS, CLC Genomics Workbench, Galaxy, BaseSpace, Trinity Statistics: Microsoft Excel and R. Database: MySQL Genome Browser: UCSC, Ensemble, IGV, IGB Motif Analysis Tools: MEME Suite, Transfac and RSAT Functional Annotation Tools: DAVID, GeneCodis, Gene Cards Networking Tools: Cytoscape</p>

<p>EMOLUMENTS : The incumbent will be paid a fee of Rs. 2000/- per sitting/ per day.</p>

<p>SCIENTIST NAME : Dr. Arnab Mukhopadhyay,</p>

<p>Staff Scientific V Next generation sequencing facility</p>

<p>SCIENTIST’S E-MAIL ID : arnab@nii.ac.in</p>

<p>WALK IN INTERVIEW ON : 18th September, 2015</p>

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

<p>PLEASE NOTE- 1. CANDIDATE MAY FILL UP APPLICATION IN THE PRECRIBED FORMAT ALONG WITH NECESSARY DOCUMENTS FOR VERIFICATION. 2. APPLICATIONS CONTAINING INCOMPLETE INFORMATION SHALL NOT BE ENTERTAINED. 3. DATE OF PASSING THE EXAMINATIONS MUST BE INDICATED CLEARLY. 4. ONLY REGISTERED CANDIDATES WILL BE INTERVIEWED. 5. NO TA/DA WILL BE PAID FOR ATTENDING THE INTERVIEW PRESCRIBED FORM 1. NAME 2. FATHER’S NAME 3. MOTHER’S NAME 4. DATE OF BIRTH 5. SEX (MALE/FEMALE) 6. CATEGORY (SC/ ST/ OBC/ PH) 7. ADDRESS a. (CORRSPONDENCE) b. (PERMANENT) 8. E MAIL, TELEPHONE NO. &amp; MOBILE No (if any) 9. ACADEMIC &amp; PROFESSIONAL QUALIFICATIONS NAME OF EXAMINATION PASSED WITH SUBJECTS YEAR OF PASSING BOARD/ UNIVERSITY PERCENTAGE/ DIVISION REMARKS 10. PAST EXPERIENCE &amp; PRESENT EMPLOYMENT, IF ANY 11. CANDIDATES SHOULD STATE CLEARLY WHETHER THEY HAVE BEEN AWARDED PH.D DEGREE OR THESIS HAS BEEN SUBMITTED. 12. HAVE YOU APPLIED FOR A POSITION EARLIER IN THE INSTITUTE? IF SO:- (1) THE DETAILS OF THE PROJECT AND PROJECT INVESTIGATOR (2) IF CALLED FOR INVERVIEW, RESULTS THEREOF</p>

<p>More at http://www1.nii.res.in/sites/default/files/walkininterview-18sept2015.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/25410/srfjrf-bioinformatics-at-ciari</guid>
  <pubDate>Fri, 04 Dec 2015 00:10:09 -0600</pubDate>
  <link></link>
  <title><![CDATA[SRF/JRF Bioinformatics at CIARI]]></title>
  <description><![CDATA[
<p>Realizing the importance of Island Agriculture to meet the requirements of local population and tourists, Indian Council of Agricultural research (ICAR) established Central Island Agricultural Research Institute, Port Blair on June 23rd, 1978 by merging different regional research stations of ICAR institutes located in Islands. The ultimate aim of CIARI is the developments of island agricultural production technologies which utilizes the strengths of the island and convert the constraints in opportunities, without causing any ill effect to the fragile ecosystem of the island.The institute has made tremendous progress in the Agriculture development of the islands during the last three decades. Keeping in view the natural resources of the islands diversity, fragile ecosystem, research program would be designed to maximize the productivity without disturbing to the islands ecosystem to provide better and decent livelihood and as a source of revenue and resource generation. Research and development in Agriculture sector should cover all disciplines in order to have a balanced progress in all disciplines for the overall benefits of the farmers of these islands.</p>

<p>Position I</p>

<p>Job Title : Junior Research Fellow</p>

<p>No. of Posts : One</p>

<p>Project : Establishment of sub distributed information centre</p>

<p>Qualification : M.Sc in Basic Science with NET or B.Sc in professional course with NET or M.Sc in professional course</p>

<p>Desired Experience : Experience in Bioinformatics and molecular biology</p>

<p>Payscale : Rs. 25000 per month</p>

<p>Age Limit : Upto 35 for men and 40 for women with 5 years relaxation to SC/ST and 3 years relaxation for OBC.</p>

<p>Position II</p>

<p>Job Title : Traineeship</p>

<p>No. of Posts : One</p>

<p>Project : Establishment of sub distributed information centre</p>

<p>Qualification : B.Sc Bioinformatics /Biotechnology / Life Science / Computer Science</p>

<p>Desired Experience : Experience in Bioinformatics and molecular biology</p>

<p>Payscale : Rs. 8000 per month</p>

<p>Age Limit : Upto 35 for men and 40 for women with 5 years relaxation to SC/ST and 3 years relaxation for OBC.</p>

<p>Position III</p>

<p>Job Title : Studentship</p>

<p>No. of Posts : Two</p>

<p>Project : Establishment of sub distributed information centre</p>

<p>Qualification : B.Sc Bioinformatics /Biotechnology / Life Science / Computer Science</p>

<p>Desired Experience : Experience in Bioinformatics and molecular biology</p>

<p>Payscale : Rs. 8000 per month</p>

<p>Age Limit : Upto 35 for men and 40 for women with 5 years relaxation to SC/ST and 3 years relaxation for OBC.</p>

<p>How to Apply : Candidates who meet the requirements can attend the walk in interview at CIARI,Port Blair on 09.12.2015 10.30AM.</p>

<p>http://icar-ciari.res.in/employment/9-12-15.pdf</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/25674/post-doc-position-at-labgem-evry-france</guid>
  <pubDate>Fri, 11 Dec 2015 06:24:00 -0600</pubDate>
  <link></link>
  <title><![CDATA[Post-doc position at LABGeM - Evry, France]]></title>
  <description><![CDATA[
<p>The LABGeM team (CEA/Genoscope, CNRS UMR 8030, France, Dir. Claudine Médigue) is developing integrated approaches which combines bioinformatics methods based (i) on genomic and metabolic contexts, (ii) on an orignal metabolic network representation and (iii) on a structural classification of active sites for the discovery of new metabolic enzymatic activities.</p>

<p>We are hiring a post-doctoral fellow for the development of innovative bioinformatics methods to explore metabolic networks and enzyme families. These methods will be based on protein family analysis and graph approaches combining genomic and metabolic contexts.</p>

<p>For more details, please see this link : http://goo.gl/tHQOqk</p>

<p>Qualifications:<br />PhD degree in bioinformatics or computational biology<br />- Previous experience in network or protein family analysis<br />- Programming skills (C/C++, Python, Java) and in common biostatistical analyses<br />- Team player, innovative and creative thinking, good oral and written communication skills</p>

<p>24 months, Post Doctoral position<br />Start: from March 2016<br />Place: CEA, Genoscope UMR8030, LABGeM (Laboratory of Bioinformatics Analyses for Genomics and Metabolism), Evry, France<br />Contact: David Vallenet, vallenet@genoscope.cns.fr<br />Publications: https://scholar.google.com/citations?user=rJNPLSAAAAAJ<br />Remuneration per month: from 2,850 €</p>

<p>Interested candidates should send their CV, statement of research interests, and contact information of at least 2 references to David Vallenet (vallenet@genoscope.cns.fr).</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/26500/postdoc-at-iiser-tvm</guid>
  <pubDate>Fri, 26 Feb 2016 03:53:05 -0600</pubDate>
  <link></link>
  <title><![CDATA[PostDoc at IISER -TVM]]></title>
  <description><![CDATA[
<p>Postdoctoral Fellowship/ Research Associateship</p>

<p>Eligibility : M Phil / Phd</p>

<p>Location : Thiruvananthapuram</p>

<p>Last Date : 30 Apr 2016</p>

<p>Hiring Process : Face to Face Interview<br />IISER -TVM </p>

<p>The Postdoctoral Fellowship/Research Associateship is a full-time, contractual position for highly qualified young scientists to carry out research at CCMS, IISER-TVM.</p>

<p>Research areas at the Centre</p>

<p>Quantum Chemistry/ Computational Fluid Dynamics/Condensed Matter Physics (Theory)/Genomics/Genetics/Gravitational Waves</p>

<p>Qualifications: PhD in Bioinformatics / Biophysics / Physics / Astrophysics / Chemistry / Mathematics / Engineering (Mechanical/Aerospace) Those who are in the final stages of their Ph.D. thesis submission are also eligible to apply. However, those candidates must have submitted the thesis at the time of the interview.</p>

<p>Experience: Applicants should have at least three peer reviewed publications and relevant experience in the research area they are applying for.</p>

<p>No. of positions: 5</p>

<p>Age limit: 35 yrs or below. A relaxation of 5 yrs will be applicable to candidates belonging to SC/ST/OBC and women candidates</p>

<p>Salary: The Fellowship carries a remuneration of INR Rs. 5,18,000 - Rs. 5,76,000 per annum (including HRA). The postdoctoral fellowship may not be held concurrently with any other national or international fellowships. It is also not transferable to any other fellowship<br />How to apply</p>

<p>Applications should reach the Head, CCMS, IISER Thiruvananthapuram,CET Campus, Engineering College PO,Thiruvananthapuram 695016 on or before April 30, 2016 by e-mail to ccms@iisertvm.ac.in by mentioning the research area name in the subject line. </p>

<p>More at http://www.iisertvm.ac.in/openings/read_opening/150.phpx</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/26221/project-assistant-at-iiser-mohali</guid>
  <pubDate>Fri, 29 Jan 2016 11:04:27 -0600</pubDate>
  <link></link>
  <title><![CDATA[Project Assistant at IISER Mohali]]></title>
  <description><![CDATA[
<p>Project Assistant Job position in Indian Institute of Science Education &amp; Research (IISER) Mohali </p>

<p>Title : In silico understanding of molecular basis of recognition, binding, and regulation of mRNA by STAR family of transcriptional regulators.</p>

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

<p>Department : Science and Technology</p>

<p>Qualifications : M.Sc./B.Tech in computational life sciences, computational chemistry, computational natural sciences or allied areas. Working experience in MD simulations, bioinformatics, molecular modeling, and drug designing is desirable and plus</p>

<p>Emoluments : As per DST norms<br />How to apply</p>

<p>Applicants are requested to send application along with bio-data and a summary of previous projects (if any) as a PDF file with the e-mail to Dr. Monika Sharma, Email: mnsharma@iisermohali.ac.in. Last date of applications is 17:00 IST. Feb 15, 2016. Shortlisted candidates will be called for interview on Feb 22, 2016. </p>

<p>More at http://14.139.227.202/tenders/tenderinvite/index.php/iiserm-project-openings/554-applications-are-invited-to-work-as-project-assistant-in-a-dst-inspire-research-project-funded-by-department-of-science-and-technology-india</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26363/flo</guid>
	<pubDate>Wed, 10 Feb 2016 10:52:32 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26363/flo</link>
	<title><![CDATA[flo]]></title>
	<description><![CDATA[<p>flo - same species annotations lift over pipeline</p>
<p>Lift over is the process of transferring annotations from one genome assembly to another. Usually lift over is done because there is a new, improved genome assembly for the species and good quality annotations (maybe manually curated or experimentally verified) are available on the old assembly.</p>
<p>The idea is simple: align the new assembly with the old one (e.g., with BLAT), process the alignment data to define how a coordinate or coordinate range on the old assembly should be transformed to the new assembly (e.g., as a chain file), transform the coordinates (e.g., with liftOver).</p>
<p>&nbsp;</p>
<p>https://github.com/wurmlab/flo</p><p>Address of the bookmark: <a href="https://github.com/wurmlab/flo" rel="nofollow">https://github.com/wurmlab/flo</a></p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>

</channel>
</rss>