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
#NOTE: all actions are done with three samples, that have names: 3,4 and 9 | |
###IMPROVING FASTQ### | |
#deleting illumina adapters by https://github.com/vsbuffalo/scythe | |
./sickle se -f /home/uploader/flies/assembly5/3_cleaned.fastq -t sanger /home/uploader/flies/assembly5/3.fastq | |
./sickle se -f /home/uploader/flies/assembly5/4_cleaned.fastq -t sanger /home/uploader/flies/assembly5/4.fastq | |
./sickle se -f /home/uploader/flies/assembly5/9_cleaned.fastq -t sanger /home/uploader/flies/assembly5/9.fastq | |
#triming fastq by https://github.com/najoshi/sickle |
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
###IMPROVING FASTQ (note: apply the same to all your fastq files) ### | |
#deleting illumina adapters by https://github.com/vsbuffalo/scythe | |
./sickle se -f /home/uploader/flies/assembly4/3_cleaned.fastq -t sanger /home/uploader/flies/assembly4/3.fastq | |
#triming fastq by https://github.com/najoshi/sickle | |
sickle se -f /home/uploader/flies/assembly4/3_cleaned.fastq -t sanger -o /home/uploader/flies/assembly4/3.fastq -q 25 | |
### Hisat http://ccb.jhu.edu/software/hisat/manual.shtml ### |
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
java -jar ./trimmomatic-0.33.jar SE -threads 2 -phred33 /home/antonkulaga/data/raw/flies/fastq/3_TTAGGC_L003_R1_001.fastq /home/antonkulaga/data/raw/flies/cleanup/3_trm.fastq ILLUMINACLIP:/opt/trimmomatic/adapters/TruSeq2-SE.fa:2:30:10 SLIDINGWINDOW:4:25 |
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
Alistair Johnson 12:52 | |
// A root, aggregate project | |
lazy val rootModule = XRootModule(moduleName = "notests", defaultSettings = buildSettings) | |
lazy val root = rootModule.project(rootJvm, rootJs) | |
lazy val rootJvm = rootModule.jvmProject(rdfJvm, dbJvm, jena) | |
lazy val rootJs = rootModule.jsProject(rdfJs, dbJs) | |
// The RDF Module | |
type m = Modules#rdf |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> | |
<title>Keyboard events do not work for inputs. I cannot type anything there=(</title> | |
</head> | |
<body> | |
<script src="../build/three.min.js"></script> |
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
package org.denigma.frontend.extensions | |
import scala.collection.immutable._ | |
import rx._ | |
import rx.ops._ | |
//NOTE THIS CODE IS NOT TESTED YET | |
trait RxCollectionOps { | |
/** |
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
jQuery -> | |
params = | |
widget_margins: [10, 10] | |
widget_base_dimensions: [250, 250] | |
shift_larger_widgets_down: false | |
draggable: | |
items: ".gs_w:not(.dashboard_static)" | |
gridster = $(".gridster ul").gridster(params).data('gridster'); |
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
### | |
it is an extract from one of my classes. | |
Here a save a log of nodes to the graph but only first one is shown =( | |
### | |
@graph = Viva.Graph.graph() | |
params = | |
container: @get("node") | |
@renderer = Viva.Graph.View.renderer(@graph, params) | |
@renderer.run() |
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
import sbt._ | |
import sbt.Keys._ | |
/** | |
* this files is intended to build the main project | |
* it contains links to all dependencies that are needed | |
* */ | |
object ApplicationBuild extends GeneActors { |
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
package semantic.graph | |
import scala.Predef._ | |
import scalax.collection.mutable.{Graph => MGraph} | |
import scalax.collection.GraphEdge._ | |
import scalax.collection.edge._ | |
import scalax.collection.mutable._ | |
import scalax.collection.edge.Implicits._ |
NewerOlder