This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get all the software dependencies from conda Works, except for sina: bioconda/bioconda-recipes#4099 See merge request !1
- Loading branch information
Showing
26 changed files
with
1,366 additions
and
35 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
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,5 @@ | ||
channels: | ||
- bioconda | ||
dependencies: | ||
- biom-format ==2.1.5 | ||
|
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,5 @@ | ||
channels: | ||
- bioconda | ||
dependencies: | ||
- fastqc ==0.11.5 | ||
|
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,5 @@ | ||
channels: | ||
- bioconda | ||
dependencies: | ||
- pandaseq ==2.11 | ||
|
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,7 @@ | ||
channels: | ||
- bioconda | ||
dependencies: | ||
- python ==2.7.12 | ||
- qiime ==1.9.1 | ||
- pyqt ==4.11.4 | ||
- xorg-libsm |
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,5 @@ | ||
channels: | ||
- bioconda | ||
dependencies: | ||
# - sina ==1.3.0 | ||
- parallel ==20160622 |
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,5 @@ | ||
channels: | ||
- bioconda | ||
dependencies: | ||
- vsearch ==2.4.0 | ||
|
Binary file not shown.
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,24 @@ | ||
import sys | ||
import traceback | ||
|
||
def Die(Msg): | ||
print >> sys.stderr | ||
print >> sys.stderr | ||
|
||
traceback.print_stack() | ||
s = "" | ||
for i in range(0, len(sys.argv)): | ||
if i > 0: | ||
s += " " | ||
s += sys.argv[i] | ||
print >> sys.stderr, s | ||
print >> sys.stderr, "**ERROR**", Msg | ||
print >> sys.stderr | ||
print >> sys.stderr | ||
sys.exit(1) | ||
print "NOTHERE!!" | ||
|
||
def Warning(Msg): | ||
print >> sys.stderr | ||
print >> sys.stderr, sys.argv | ||
print >> sys.stderr, "**WARNING**", Msg |
Binary file not shown.
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,47 @@ | ||
import sys | ||
import fasta | ||
import fastq | ||
import die | ||
|
||
FastaFileName = sys.argv[1] | ||
QualFileName = sys.argv[2] | ||
|
||
ff = open(FastaFileName) | ||
fq = open(QualFileName) | ||
|
||
while 1: | ||
Linef = ff.readline() | ||
if len(Linef) == 0: | ||
break | ||
Labelf = Linef.strip() | ||
Seqf = ff.readline().strip() | ||
L = len(Seqf) | ||
assert L != 0 | ||
|
||
Labelq = fq.readline().strip() | ||
Seqq = fq.readline().strip() | ||
assert len(Seqq) != 0 | ||
|
||
Labf = Labelf.split()[0] | ||
Labq = Labelq.split()[0] | ||
|
||
if Labf != Labq: | ||
print >> sys.stderr | ||
print >> sys.stderr, "LABEL MISMATCH" | ||
print >> sys.stderr, "Labelf:", Labelf | ||
print >> sys.stderr, "Labelq:", Labelq | ||
sys.exit(1) | ||
|
||
Quals = Seqq.split() | ||
LQ = len(Quals) | ||
if LQ != L: | ||
die.Die("LS %u, LQ %u >%s" % (L, LQ, Labelf)) | ||
|
||
q = "" | ||
for Qual in Quals: | ||
iq = int(Qual) | ||
cq = fastq.IntQualToChar(iq) | ||
q += cq | ||
|
||
assert len(q) == L | ||
fastq.WriteRec(sys.stdout, Labelf, Seqf, q) |
Oops, something went wrong.