Skip to content

Commit

Permalink
fix typo in readme.md2
Browse files Browse the repository at this point in the history
  • Loading branch information
maotian06 committed Aug 23, 2024
1 parent e174a59 commit bbeb671
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ for(i in c('cna','methy','snv')) {
# Check what the data looks like
str(molecular.data);
molecular.data$methy[1:5,1:5];
molecular.data$csnvs[1:5,1:5];
molecular.data$snv[1:5,1:5];
```


Expand Down Expand Up @@ -97,9 +97,9 @@ autoencoders[['methy']] <- create.autoencoder(
str(autoencoders$methy);
# Create and train an autoencoder using coding SNV data
autoencoders[['csnvs']] <- create.autoencoder(
data.type = 'csnvs',
data.matrix = molecular.data$csnvs,
autoencoders[['snv']] <- create.autoencoder(
data.type = 'snv',
data.matrix = molecular.data$snv,
encoder.layers.node.nums = c(15,1)
)$autoencoder;
Expand Down Expand Up @@ -138,7 +138,7 @@ similarity.matrix <- calculate.integrative.similarity.matrix(
data.matrices = molecular.data,
dist.metrics = list(
cna = 'euclidean',
csnvs = 'euclidean',
snv = 'euclidean',
methy = 'euclidean'
)
);
Expand All @@ -159,7 +159,7 @@ cis.matrix <- calculate.cis.matrix(
data.matrices = molecular.data,
dist.metrics = list(
cna = 'euclidean',
csnvs = 'euclidean',
snv = 'euclidean',
methy = 'euclidean'
)
);
Expand Down

0 comments on commit bbeb671

Please sign in to comment.