stlfr2supernova_pipeline
A pipeline to de novo assemble the stLFR reads using Supernova Assembler
File Explorer
- fake_10x.pl
- merge_barcodes.pl
- SOAPfilter_v2.2
- __init__.py
- step_1_convert10X.py
- step_2_run_longranger.py
- step_3_run_supernova.py
- step_4_run_athena.py
- step_5_run_clouspades.py
- athena.py
- clean_stlfr2supernova_pipline.py
- cloudspades.py
- fake_10x.pl
- merge_barcodes.pl
- README.md
- shell_barcode
- supernova.py
- lane.lst
- mark_library.sh
- stlfr2barcode_fq_gz.pl
- .gitmodules
- archiving.sh
- profile
- README.md
- run.sh
- step_0_split_barode.sh
- step_1_filter.sh
- step_2_fake_10X_data.sh
- step_3_run_supernova.sh
- stLFR_barcode_split
- threshold_calc.sh
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
perl
View Details ▼
perl
The Perl 5 language interpreter.
See also: `perldoc`.
perl -n -e 'print if m/regex1/ and m/regex2/i'
Print lines from `stdin` [m]atching `regex1` and case [i]nsensitive `regex2`:
perl -n -E 'say $1 if m/{{before}} ( {{group_regex}} ) {{after}}/x'
Say ([-E]) first match group, using a `regex`, ignoring space ([x]) in `regex`:
perl -i'.bak' -p -e 's/regex/{{replacement}}/g' {{path/to/files}}
[i]n-place, with backup, [s]ubstitute all occurrence ([g]) of `regex` with a replacement:
