You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The random walk with restarts algorithm requires a directed input network. However, the algorithm in its current form will accept an undirected input network and interpret it as a directed network. The resulting output from an undirected network does not accuratly represent directionality.
3
+
4
+
## Building docker fileAdd commentMore actions
5
+
to build a new docker image for rwr navigate to the /docker-wrappers/rwr directory and enter:
6
+
```
7
+
docker build -t ade0brien/strwr -f Dockerfile .
8
+
```
9
+
10
+
## Testing
11
+
Test code is located in `test/ST_RWR`.
12
+
The `input` subdirectory contains test files `strwr-network.txt`, `strwr-sources.txt`, and `strwr-targets.txt`
0 commit comments