Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix for mm10 Kraken #58

Merged
merged 2 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/genomes/mm10.biowulf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"references": {
"FASTQ_SCREEN_CONFIG": "resources/fastq_screen.biowulf.conf",
"KRAKENBACDB": "/data/CCBR_Pipeliner/Exome-seek/hg38/kraken/20180907_standard_kraken2",
"KRAKENBACDB": "/data/CCBR_Pipeliner/Pipelines/XAVIER/resources/hg38/kraken/20180907_standard_kraken2",
"trimmomatic.adapters": "resources/adapters.fa",
"SNPEFF_GENOME": "GRCm38.86",
"SNPEFF_CONFIG": "/data/CCBR_Pipeliner/Pipelines/XAVIER/resources/mm10/snpEff/4.3t/snpEff.config",
Expand Down
2 changes: 1 addition & 1 deletion workflow/scripts/reformat_bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
### Step through each line of input
for line in inputFile:
### Skip comments
if not line.startswith("#"):
if not line.startswith("#") and not line.startswith("track") and not line.startswith("browser"):
curr_cols=line.strip().split("\t")
if (len(curr_cols) < 3):
sys.exit("Targets BED file must contain at least three columns: chr, start, end")
Expand Down
Loading