Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Hiller authored Jan 11, 2019
1 parent eee3486 commit fa83ea1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ chmod +x jobList
# Convert results into genePred format (excluding 0-bp exons due to complete deletions)
for species in `echo $querySpecies | sed 's/,/ /g'`; do
echo "bed2GenePred.pl $species $outputDir /dev/stdout | awk '{if ($4 != $5) print $0}' > $resultsDir/$species.gp"
echo "bed2GenePred.pl $species $outputDir /dev/stdout | awk '{if (\$4 != \$5) print \$0}' > $resultsDir/$species.gp"
done > jobListGenePred
chmod +x jobListGenePred
mkdir $resultsDir
./jobListGenePred
# This will take ~15 minutes
Expand Down Expand Up @@ -158,9 +159,10 @@ or run it in parallel by using a compute cluster.
After each realignment job succeeded, collect the results as a single genePred file for each query species by running:
```
for species in `echo $querySpecies | sed 's/,/ /g'`; do
echo "bed2GenePred.pl $species $outputDir /dev/stdout | awk '{if ($4 != $5) print $0}' > $resultsDir/$species.gp"
echo "bed2GenePred.pl $species $outputDir /dev/stdout | awk '{if (\$4 != \$5) print \$0}' > $resultsDir/$species.gp"
done > jobListGenePred
chmod +x jobListGenePred
mkdir $resultsDir
./jobListGenePred
```

Expand Down

0 comments on commit fa83ea1

Please sign in to comment.