-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'gh-pages' of github.com:maasha/biopieces into gh-pages
- Loading branch information
Showing
5 changed files
with
868 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>www.biopieces.org by maasha</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen"> | ||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'> | ||
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen"> | ||
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen"> | ||
</head> | ||
<body> | ||
<section class="page-header"> | ||
<h1 class="project-name">www.biopieces.org</h1> | ||
<h2 class="project-tagline">Biopieces is a bioinformatic framework of tools easily used and easily created.</h2> | ||
<a href="https://github.com/maasha/biopieces" class="btn">View on GitHub</a> | ||
<a href="https://github.com/maasha/biopieces/zipball/master" class="btn">Download .zip</a> | ||
<a href="https://github.com/maasha/biopieces/tarball/master" class="btn">Download .tar.gz</a> | ||
</section> | ||
|
||
<section class="main-content"> | ||
<p><img src="https://raw.githubusercontent.com/wiki/maasha/biopieces/bp_logo_50.png" alt="Logo"></p> | ||
|
||
<p>The Biopieces are a collection of bioinformatics tools that can be pieced together in a very easy and flexible manner to perform both simple and complex tasks. The Biopieces work on a data stream in such a way that the data stream can be passed through several different Biopieces, each performing one specific task: modifying or adding records to the data stream, creating plots, or uploading data to databases and web services. The Biopieces are executed in a command line environment where the data stream is initialized by specific Biopieces which read data from files, databases, or web services, and output records to the data stream that is passed to downstream Biopieces until the data stream is terminated at the end of the analysis as outlined below:</p> | ||
|
||
<pre><code>read_data | calculate_something | write_results | ||
</code></pre> | ||
|
||
<p>The following example demonstrates how a next generation sequencing experiment can be cleaned and analyzed – including plotting of scores and length distribution, removal of adaptor sequence, trimming and filtering using quality scores, mapping to a specified genome, and uploading the data to the UCSC genome browser for further analysis:</p> | ||
|
||
<pre><code>read_fastq -i data.fq | # Initialize data stream from a FASTQ file. | ||
plot_scores -t png -o scores_unclean.png | # Plot scores before cleaning. | ||
find_adaptor -c 24 -a TCGTATGCCGTCTTC -p | # Locate adaptor - including partial adaptor. | ||
clip_adaptor | # Clip any located adaptor. | ||
trim_seq | # End trim sequences according to quality scores. | ||
grab -e 'SEQ_LEN > 18' # Filter short sequences. | ||
mean_scores -l | # Locate local quality score minima. | ||
grab -e 'SCORES_MEAN_LOCAL >= 15' | # Filter low local quality score minima. | ||
write_fastq -o data_clean.fq | # Write the cleaned data to a FASTQ file. | ||
plot_scores -t png -o scores_clean.png | # Plot scores after cleaning. | ||
plot_distribution -k SEQ_LEN -t png -o lengths.png | # Plot sequence length distribution. | ||
bowtie_seq -c 24 -g hg19 -m 2 | # Map sequences to the human genome with Bowtie. | ||
upload_to_ucsc –d hg19 –t my_data –x # Upload the results to the UCSC Genome Browser. | ||
</code></pre> | ||
|
||
<p>The advantage of the Biopieces is that a user can easily solve simple and complex tasks without having any programming experience. Moreover, since the data format used to pass data between Biopieces is text based, different developers can quickly create new Biopieces in their favorite programming language - and all the Biopieces will maintain compatibility. Finally, templates exist for creating new Biopieces in Perl and Ruby.</p> | ||
|
||
<p>There are currently ~190 Biopieces.</p> | ||
|
||
<ul> | ||
<li>To learn more about Biopieces have a look at the <a href="Introduction">Biopieces Introduction</a>.</li> | ||
<li>To browse the available Biopieces see the top right side bar.</li> | ||
<li>If you want to install the Biopieces go to the Biopieces <a href="Installation">Installation Instructions</a>.</li> | ||
<li>If you want to contribute Biopieces go to the <a href="HowTo">Biopieces HowTo</a>.</li> | ||
<li>Browse publications using Biopieces <a href="http://scholar.google.dk/scholar?hl=en&q=biopieces">here</a>.</li> | ||
</ul> | ||
|
||
<p>For important messages, questions, discussion, and suggestions join the <a href="http://groups.google.com/group/biopieces">Biopieecs Google Group</a>.</p> | ||
|
||
<p>Biopieces was developed with support from the Danish Agency for Science, Technology and Innovation (grant no 272-06-0325).</p> | ||
|
||
<footer class="site-footer"> | ||
<span class="site-footer-owner"><a href="https://github.com/maasha/biopieces">www.biopieces.org</a> is maintained by <a href="https://github.com/maasha">maasha</a>.</span> | ||
|
||
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span> | ||
</footer> | ||
|
||
</section> | ||
|
||
<script type="text/javascript"> | ||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); | ||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); | ||
</script> | ||
<script type="text/javascript"> | ||
try { | ||
var pageTracker = _gat._getTracker("UA-390268-5"); | ||
pageTracker._trackPageview(); | ||
} catch(err) {} | ||
</script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name":"www.biopieces.org","tagline":"Biopieces is a bioinformatic framework of tools easily used and easily created.","body":"![Logo](https://raw.githubusercontent.com/wiki/maasha/biopieces/bp_logo_50.png)\r\n\r\nThe Biopieces are a collection of bioinformatics tools that can be pieced together in a very easy and flexible manner to perform both simple and complex tasks. The Biopieces work on a data stream in such a way that the data stream can be passed through several different Biopieces, each performing one specific task: modifying or adding records to the data stream, creating plots, or uploading data to databases and web services. The Biopieces are executed in a command line environment where the data stream is initialized by specific Biopieces which read data from files, databases, or web services, and output records to the data stream that is passed to downstream Biopieces until the data stream is terminated at the end of the analysis as outlined below:\r\n\r\n```\r\nread_data | calculate_something | write_results\r\n```\r\n\r\nThe following example demonstrates how a next generation sequencing experiment can be cleaned and analyzed – including plotting of scores and length distribution, removal of adaptor sequence, trimming and filtering using quality scores, mapping to a specified genome, and uploading the data to the UCSC genome browser for further analysis:\r\n\r\n```\r\nread_fastq -i data.fq | # Initialize data stream from a FASTQ file.\r\nplot_scores -t png -o scores_unclean.png | # Plot scores before cleaning.\r\nfind_adaptor -c 24 -a TCGTATGCCGTCTTC -p | # Locate adaptor - including partial adaptor.\r\nclip_adaptor | # Clip any located adaptor.\r\ntrim_seq | # End trim sequences according to quality scores.\r\ngrab -e 'SEQ_LEN > 18' # Filter short sequences.\r\nmean_scores -l | # Locate local quality score minima.\r\ngrab -e 'SCORES_MEAN_LOCAL >= 15' | # Filter low local quality score minima.\r\nwrite_fastq -o data_clean.fq | # Write the cleaned data to a FASTQ file.\r\nplot_scores -t png -o scores_clean.png | # Plot scores after cleaning.\r\nplot_distribution -k SEQ_LEN -t png -o lengths.png | # Plot sequence length distribution.\r\nbowtie_seq -c 24 -g hg19 -m 2 | # Map sequences to the human genome with Bowtie.\r\nupload_to_ucsc –d hg19 –t my_data –x # Upload the results to the UCSC Genome Browser.\r\n```\r\n\r\nThe advantage of the Biopieces is that a user can easily solve simple and complex tasks without having any programming experience. Moreover, since the data format used to pass data between Biopieces is text based, different developers can quickly create new Biopieces in their favorite programming language - and all the Biopieces will maintain compatibility. Finally, templates exist for creating new Biopieces in Perl and Ruby.\r\n\r\nThere are currently ~190 Biopieces.\r\n\r\n* To learn more about Biopieces have a look at the [Biopieces Introduction](Introduction).\r\n* To browse the available Biopieces see the top right side bar.\r\n* If you want to install the Biopieces go to the Biopieces [Installation Instructions](Installation).\r\n* If you want to contribute Biopieces go to the [Biopieces HowTo](HowTo).\r\n* Browse publications using Biopieces [here](http://scholar.google.dk/scholar?hl=en&q=biopieces).\r\n\r\nFor important messages, questions, discussion, and suggestions join the [Biopieecs Google Group](http://groups.google.com/group/biopieces).\r\n\r\nBiopieces was developed with support from the Danish Agency for Science, Technology and Innovation (grant no 272-06-0325).\r\n","google":"UA-390268-5","note":"Don't delete this file! It's used internally to help with page regeneration."} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* | ||
Copyright 2014 GitHub Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
.pl-c /* comment */ { | ||
color: #969896; | ||
} | ||
|
||
.pl-c1 /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */, | ||
.pl-s .pl-v /* string variable */ { | ||
color: #0086b3; | ||
} | ||
|
||
.pl-e /* entity */, | ||
.pl-en /* entity.name */ { | ||
color: #795da3; | ||
} | ||
|
||
.pl-s .pl-s1 /* string source */, | ||
.pl-smi /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ { | ||
color: #333; | ||
} | ||
|
||
.pl-ent /* entity.name.tag */ { | ||
color: #63a35c; | ||
} | ||
|
||
.pl-k /* keyword, storage, storage.type */ { | ||
color: #a71d5d; | ||
} | ||
|
||
.pl-pds /* punctuation.definition.string, string.regexp.character-class */, | ||
.pl-s /* string */, | ||
.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */, | ||
.pl-sr /* string.regexp */, | ||
.pl-sr .pl-cce /* string.regexp constant.character.escape */, | ||
.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */, | ||
.pl-sr .pl-sre /* string.regexp source.ruby.embedded */ { | ||
color: #183691; | ||
} | ||
|
||
.pl-v /* variable */ { | ||
color: #ed6a43; | ||
} | ||
|
||
.pl-id /* invalid.deprecated */ { | ||
color: #b52a1d; | ||
} | ||
|
||
.pl-ii /* invalid.illegal */ { | ||
background-color: #b52a1d; | ||
color: #f8f8f8; | ||
} | ||
|
||
.pl-sr .pl-cce /* string.regexp constant.character.escape */ { | ||
color: #63a35c; | ||
font-weight: bold; | ||
} | ||
|
||
.pl-ml /* markup.list */ { | ||
color: #693a17; | ||
} | ||
|
||
.pl-mh /* markup.heading */, | ||
.pl-mh .pl-en /* markup.heading entity.name */, | ||
.pl-ms /* meta.separator */ { | ||
color: #1d3e81; | ||
font-weight: bold; | ||
} | ||
|
||
.pl-mq /* markup.quote */ { | ||
color: #008080; | ||
} | ||
|
||
.pl-mi /* markup.italic */ { | ||
color: #333; | ||
font-style: italic; | ||
} | ||
|
||
.pl-mb /* markup.bold */ { | ||
color: #333; | ||
font-weight: bold; | ||
} | ||
|
||
.pl-md /* markup.deleted, meta.diff.header.from-file */ { | ||
background-color: #ffecec; | ||
color: #bd2c00; | ||
} | ||
|
||
.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ { | ||
background-color: #eaffea; | ||
color: #55a532; | ||
} | ||
|
||
.pl-mdr /* meta.diff.range */ { | ||
color: #795da3; | ||
font-weight: bold; | ||
} | ||
|
||
.pl-mo /* meta.output */ { | ||
color: #1d3e81; | ||
} | ||
|
Oops, something went wrong.