Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libhts
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Blaise LI
libhts
Compare Revisions
0fdf3851f5601b6efb6f558e7ae52c197e2c1de4...7f9e31de22e631580bf2964d705059320344491a
Source
7f9e31de22e631580bf2964d705059320344491a
Select Git revision
...
Target
0fdf3851f5601b6efb6f558e7ae52c197e2c1de4
Select Git revision
Compare
Commits (2)
Fix auto-module-load for Python 3.
· 7e9e2ed2
Blaise Li
authored
Feb 24, 2020
7e9e2ed2
Mention bam2bigwig.sh and citation in README.
· 7f9e31de
Blaise Li
authored
Feb 24, 2020
7f9e31de
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
README.md
README.md
+11
-2
scripts/bam2bigwig.sh
scripts/bam2bigwig.sh
+1
-1
No files found.
README.md
View file @
7f9e31de
# Miscellaneous things to process high throughput sequencing data.
# Miscellaneous things to process high throughput sequencing data.
This Python package also installs a shell script depending on samtools:
This Python package also installs some shell scripts:
`sam2indexedbam.sh`
*
`sam2indexedbam.sh`
(depends on samtools)
*
`bam2bigwig.sh`
(depends on bedops, python3, samtools, bedtools, niceload from parallel and bedGraphToBigWig from UCSC-tools)
## Installing
## Installing
...
@@ -11,3 +14,9 @@ It might also work directly:
...
@@ -11,3 +14,9 @@ It might also work directly:
python3 -m pip install git+ssh://git@gitlab.pasteur.fr/bli/libhts.git
python3 -m pip install git+ssh://git@gitlab.pasteur.fr/bli/libhts.git
## Citing
If you use this package, please cite the following paper:
> Barucci et al, 2020 (doi: [10.1038/s41556-020-0462-7](https://doi.org/10.1038/s41556-020-0462-7))
scripts/bam2bigwig.sh
View file @
7f9e31de
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
load_tools
()
load_tools
()
{
{
[
bedops
--version
2> /dev/null
]
||
module load bedops/2.4.36
[
bedops
--version
2> /dev/null
]
||
module load bedops/2.4.36
[
python3
-V
2> /dev/null
]
||
module load
bedops/2.4.36
[
python3
-V
2> /dev/null
]
||
module load
Python/3.7.2
[
samtools
--version
2> /dev/null
]
||
module load samtools/1.9
[
samtools
--version
2> /dev/null
]
||
module load samtools/1.9
[
bedtools
--version
2> /dev/null
]
||
module load bedtools/2.25.0
[
bedtools
--version
2> /dev/null
]
||
module load bedtools/2.25.0
[
niceload
--version
2> /dev/null
]
||
module load parallel/20170122
[
niceload
--version
2> /dev/null
]
||
module load parallel/20170122
...
...