-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Merge branch 'main' of https://github.com/CCBR/XAVIER
- Loading branch information
Showing
37 changed files
with
144 additions
and
590 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 was deleted.
Oops, something went wrong.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
|
@@ -36,28 +36,20 @@ | |
""" | ||
|
||
# Python standard library | ||
from __future__ import print_function | ||
import sys, os, subprocess, re, json, textwrap | ||
|
||
|
||
# 3rd party imports from pypi | ||
import argparse # potential python3 3rd party package, added in python/3.5 | ||
from ccbr_tools.pipeline.util import err, exists, fatal, permissions, require | ||
from ccbr_tools.pipeline.cache import check_cache | ||
|
||
# Local imports | ||
from .run import init, setup, bind, dryrun, runner, run | ||
from .shells import bash | ||
from .options import genome_options | ||
from .util import ( | ||
err, | ||
exists, | ||
fatal, | ||
permissions, | ||
check_cache, | ||
require, | ||
get_version, | ||
get_genomes_list, | ||
) | ||
from .gui import launch_gui | ||
from .util import xavier_base, get_version | ||
|
||
__version__ = get_version() | ||
__email__ = "[email protected]" | ||
|
@@ -228,7 +220,7 @@ def parsed_arguments(): | |
FastQ files or a set of BAM files. The pipeline does | ||
NOT support processing a mixture of FastQ files and | ||
BAM files. | ||
Example: --input .tests/*.R?.fastq.gz | ||
Example: --input tests/data/*.R?.fastq.gz | ||
--output OUTPUT | ||
Path to an output directory. This location is where | ||
the pipeline will create all of its output files, also | ||
|
@@ -264,15 +256,15 @@ def parsed_arguments(): | |
# Step 2A.) Initialize the pipeline | ||
xavier run \\ | ||
--runmode init \\ | ||
--input .tests/*.R?.fastq.gz \\ | ||
--input tests/data/*.R?.fastq.gz \\ | ||
--output /data/$USER/xavier_hg38 \\ | ||
--genome hg38 \\ | ||
--targets resources/Agilent_SSv7_allExons_hg38.bed | ||
# Step 2B.) Dry-run the pipeline | ||
xavier run \\ | ||
--runmode dryrun \\ | ||
--input .tests/*.R?.fastq.gz \\ | ||
--input tests/data/*.R?.fastq.gz \\ | ||
--output /data/$USER/xavier_hg38 \\ | ||
--genome hg38 \\ | ||
--targets resources/Agilent_SSv7_allExons_hg38.bed \\ | ||
|
@@ -283,7 +275,7 @@ def parsed_arguments(): | |
# It is recommended running xavier in this mode. | ||
xavier run \\ | ||
--runmode run \\ | ||
--input .tests/*.R?.fastq.gz \\ | ||
--input tests/data/*.R?.fastq.gz \\ | ||
--output /data/$USER/xavier_hg38 \\ | ||
--genome hg38 \\ | ||
--targets resources/Agilent_SSv7_allExons_hg38.bed \\ | ||
|
Oops, something went wrong.