This file contains hidden or 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
... | |
<command interpreter="bash">trimmomatic.sh | |
-mx8G | |
-jar \$TRIMMOMATIC_DIR/trimmomatic-0.32.jar | |
#if $paired_end.is_paired_end | |
PE -threads \${GALAXY_SLOTS:-6} -phred33 $fastq_r1_in $paired_end.fastq_r2_in $fastq_out_r1_paired $fastq_out_r1_unpaired $fastq_out_r2_paired $fastq_out_r2_unpaired | |
#else | |
SE -threads \${GALAXY_SLOTS:-6} -phred33 $fastq_in $fastq_out | |
#end if | |
... |
This file contains hidden or 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
#!/bin/sh | |
echo Values are $1 $2 > $3 |
This file contains hidden or 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
#!/bin/sh | |
echo Values are ${@:2} > $1 |
This file contains hidden or 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
http { | |
... | |
upstream reports { | |
server localhost:9001; | |
} | |
... | |
server { | |
... | |
location ^~ /reports/ { | |
proxy_pass http://reports; |
This file contains hidden or 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
... | |
location ^~ /reports/ { | |
proxy_pass http://reports; | |
proxy_set_header X-Forwarded-Host $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
auth_basic "Restricted"; | |
auth_basic_user_file /etc/nginx/galaxy-reports.htpasswd; | |
... | |
} |
This file contains hidden or 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
diff -r c3cef260df88 lib/galaxy/webapps/galaxy/controllers/history.py | |
--- a/lib/galaxy/webapps/galaxy/controllers/history.py Fri May 15 15:20:17 2015 -0400 | |
+++ b/lib/galaxy/webapps/galaxy/controllers/history.py Wed Jun 17 12:51:41 2015 +0100 | |
@@ -899,7 +899,7 @@ | |
for history_id in ids: | |
history_id = self.decode_id( history_id ) | |
history = self.history_manager.get_owned( history_id, trans.user, current_history=trans.history ) | |
- histories.append( ) | |
+ histories.append( history ) | |
return histories |
This file contains hidden or 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
#!/usr/bin/env python | |
# | |
# Make generic CEAS annotation file for arbitrary genome build | |
# | |
# Needs the UCSC fetchChromSizes program plus build_genomeBG from CEAS | |
# | |
# Usage: make_ceas_refseq_annotation.py <GENOME> | |
# | |
import optparse | |
import os |
This file contains hidden or 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
#!/usr/bin/env python | |
# | |
# Convert bedgraph file into wig format | |
# | |
# Based on perl script by Dave Tang | |
# http://davetang.org/wiki/tiki-index.php?page=wig | |
import optparse | |
import os | |
import gzip |
This file contains hidden or 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
#!/bin/sh | |
# | |
# Generate test outputs for clustering | |
# | |
# Existing test case (--cluster_fast) | |
vsearch \ | |
--notrunclabels \ | |
--cluster_fast BioMarKs5k.fsa.bz2 \ | |
--maxrejects 2 \ | |
--maxaccepts 1 \ |
This file contains hidden or 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
#!/bin/bash -e | |
# | |
# Migrate "legacy" config files in Galaxy distribution | |
# | |
# Check nothing is running | |
if [ ! -z "$(ls *.pid 2>/dev/null)" ] ; then | |
echo ERROR check you have stopped all Galaxy processes >&2 | |
exit 1 | |
fi | |
# |