Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ChIP-seq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IGR-lab
ChIP-seq
Commits
175f3640
Commit
175f3640
authored
4 years ago
by
Laura Cook
Browse files
Options
Downloads
Patches
Plain Diff
generate commands to run array scripts for lastz and repeatMasker
parent
178ada24
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cross_species_comparison/scripts/lastz.sh
+17
-0
17 additions, 0 deletions
cross_species_comparison/scripts/lastz.sh
cross_species_comparison/scripts/repeatMasker.sh
+18
-0
18 additions, 0 deletions
cross_species_comparison/scripts/repeatMasker.sh
with
35 additions
and
0 deletions
cross_species_comparison/scripts/lastz.sh
0 → 100644
+
17
−
0
View file @
175f3640
##!/usr/bin/env bash
## This script loops through all scaffolds in the dunnart genome and
## generates a separate lastz command for each scaffold
## These commands are then used in a slurm array script to run jobs in parallel
TRA
=(
$(
for
file
in
*
.fa
;
do
echo
$file
|cut
-d
"."
-f
1
;
done
)
)
echo
${
TRA
[@]
}
for
tr
in
${
TRA
[@]
}
;
do
echo
'lastz_32 /data/projects/punim0586/lecook/chipseq-pipeline/cross_species/data/genomes/mm10.fa[multiple] /data/projects/pun$
done
This diff is collapsed.
Click to expand it.
cross_species_comparison/scripts/repeatMasker.sh
0 → 100644
+
18
−
0
View file @
175f3640
##!/usr/bin/env bash
## This script loops through all scaffolds in the dunnart genome and
## generates a separate RepeatMasker command for each scaffold
## These commands are then used in a slurm array script to run jobs in parallel
TRA
=(
$(
for
file
in
*
.fa
;
do
echo
$file
|cut
-d
"."
-f
1
;
done
)
)
echo
${
TRA
[@]
}
for
tr
in
${
TRA
[@]
}
;
do
echo
'RepeatMasker -q -xsmall smiCra1/'
${
tr
}
'.fa -default_search_engine hmmer -trf_prgm /home/lecook/.conda/envs/wga/bin/trf -hmmer_dir /home/lecook/.conda/envs/wga/bin/'
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment